📄 preelement.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -