?? 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 + -