📄 preattribute.java
字号:
/*
* PreAttribute.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.*;
import XRSystem.Util.*;
/**
*
* @author 王刚
*/
public class PreAttribute {
private int DocumentID;
private int AttributeID;
private int ElementPre;
private String AttributeName;
private String AttributeValue;
/** Creates a new instance of PreAttribute */
public PreAttribute(int DocumentID,int AttributeID,int ElementPre,String AttributeName,String AttributeValue)
{
this.DocumentID = DocumentID;
this.AttributeID = AttributeID;
this.ElementPre = ElementPre;
this.AttributeName = AttributeName;
this.AttributeValue = AttributeValue;
}
public int GetDocumentID()
{
return DocumentID;
}
public int GetAttributeID()
{
return AttributeID;
}
public int GetElementPre()
{
return ElementPre;
}
public String GetAttributeName()
{
return AttributeName;
}
public String GetAttributeValue()
{
return AttributeValue;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -