preelement.java

来自「本人的毕业设计」· Java 代码 · 共 51 行

JAVA
51
字号
/*
 * PreElement.java
 *
 * Created on 2007年3月2日, 下午2:30
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package XRSystem.Util;

/**
 *
 * @author 王刚
 */
import java.lang.*;
import java.util.*;

/**
 *
 * @author 王刚
 */
public class PreElement {
    
    private int DocumentID;
    private int ElementPre;
    private String TagName;
    
    /** Creates a new instance of PreElement */
    public PreElement(int DocumentID,int ElementPre,String TagName) {
        this.DocumentID = DocumentID;
        this.ElementPre = ElementPre;
        this.TagName = TagName;
    }
    
    public int GetElementPre()
    {
        return ElementPre;
    }
    
    public int GetDocumentID()
    {
        return DocumentID;
    }
    
    public String GetTagName()
    {
        return TagName;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?