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