article.java

来自「《J2ME实用教程》清华大学出版社出版」· Java 代码 · 共 46 行

JAVA
46
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?