/** * The Adaptee in this sample */ public class Text { private String content; public Text() { } public void SetContent(String str) { content = str; } public String GetContent() { return content; } }
最近下载更多
/** * The Adaptee in this sample */ public class Text { private String content; public Text() { } public void SetContent(String str) { content = str; } public String GetContent() { return content; } }