📄 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 + -