personalinfoholder.java

来自「java初学者适用的源码一共分成15章每章都有配套源码,简单易用」· Java 代码 · 共 38 行

JAVA
38
字号
package humanresourcedemo.HumanResource;

/**
 * <ul>
 * <li> <b>IDL Source</b>    "E:/HumanResourceDemo/src/humanresourcedemo/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 final class PersonalInfoHolder implements org.omg.CORBA.portable.Streamable {
  public humanresourcedemo.HumanResource.PersonalInfo value;

  public PersonalInfoHolder () {
  }

  public PersonalInfoHolder (final humanresourcedemo.HumanResource.PersonalInfo _vis_value) {
    this.value = _vis_value;
  }

  public void _read (final org.omg.CORBA.portable.InputStream input) {
    value = humanresourcedemo.HumanResource.PersonalInfoHelper.read(input);
  }

  public void _write (final org.omg.CORBA.portable.OutputStream output) {
    humanresourcedemo.HumanResource.PersonalInfoHelper.write(output, value);
  }

  public org.omg.CORBA.TypeCode _type () {
    return humanresourcedemo.HumanResource.PersonalInfoHelper.type();
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?