📄 personalinfopoatie.java
字号:
package humanresource.HR;
/**
* <ul>
* <li> <b>IDL Source</b> "E:/HumanResource/src/humanresource/HR.idl"
* <li> <b>IDL Name</b> ::HR::PersonalInfo
* <li> <b>Repository Id</b> IDL:HR/PersonalInfo:1.0
* </ul>
* <b>IDL definition:</b>
* <pre>
* interface PersonalInfo {
...
};
* </pre>
*/
public class PersonalInfoPOATie extends PersonalInfoPOA {
private humanresource.HR.PersonalInfoOperations _delegate;
private org.omg.PortableServer.POA _poa;
public PersonalInfoPOATie (final humanresource.HR.PersonalInfoOperations _delegate) {
this._delegate = _delegate;
}
public PersonalInfoPOATie (final humanresource.HR.PersonalInfoOperations _delegate,
final org.omg.PortableServer.POA _poa) {
this._delegate = _delegate;
this._poa = _poa;
}
public humanresource.HR.PersonalInfoOperations _delegate () {
return this._delegate;
}
public void _delegate (final humanresource.HR.PersonalInfoOperations delegate) {
this._delegate = delegate;
}
public org.omg.PortableServer.POA _default_POA () {
if (_poa != null) {
return _poa;
}
else {
return super._default_POA();
}
}
/**
* <pre>
* readonly attribute long IdNumber;
* </pre>
*/
public int IdNumber () {
return this._delegate.IdNumber();
}
/**
* <pre>
* attribute humanresource.HR.PersonalInfoStruct InfoDesc;
* </pre>
*/
public humanresource.HR.PersonalDesc InfoDesc () {
return this._delegate.InfoDesc();
}
/**
* <pre>
* attribute humanresource.HR.PersonalInfoStruct InfoDesc;
* </pre>
*/
public void InfoDesc (humanresource.HR.PersonalDesc InfoDesc) {
this._delegate.InfoDesc(InfoDesc);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -