📄 attributes.java
字号:
package psic;
/**
* <p>Title: PSIC</p>
* <p>Description: JNI FUNCTIONS</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Company: wellhope</p>
* @author reon
* @version 1.0
*/
/**
* C Functions Define
typedef struct ATTRIBUTES {
PKI_DATA attrOID;
int attrDataType; //BMP STRING(0x1E), BIT STRING(0x03)
PKI_DATA attrValue;
} ATTRIBUTES;
*/
public class ATTRIBUTES {
public PKI_DATA attrOID;
private int attrDataType;
public PKI_DATA attrValue;
public ATTRIBUTES() {
attrOID = new PKI_DATA();
attrValue = new PKI_DATA();
attrDataType = 0;
}
public int getAttrDataType() {
return attrDataType;
}
public void setAttrDataType(int attrDataType) {
this.attrDataType = attrDataType;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -