?? article.java
字號:
// This class was generated by the JAXRPC SI, do not edit.
// Contents subject to change without notice.
// JSR-172 Reference Implementation wscompile 1.0, using: JAX-RPC Standard Implementation (1.1, build R59)
package com.j2medev.chapter10.sampleservice;
public class Article {
protected java.lang.String content;
protected int id;
protected java.lang.String title;
public Article() {
}
public Article(java.lang.String content, int id, java.lang.String title) {
this.content = content;
this.id = id;
this.title = title;
}
public java.lang.String getContent() {
return content;
}
public void setContent(java.lang.String content) {
this.content = content;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public java.lang.String getTitle() {
return title;
}
public void setTitle(java.lang.String title) {
this.title = title;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -