arrayholder.java
来自「This is source code corba with java」· Java 代码 · 共 40 行
JAVA
40 行
package ArithApp.AddPackage;
/**
* ArithApp/AddPackage/arrayHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from add/add.idl
* Thursday, June 12, 2008 11:37:43 AM GMT+07:00
*/
public final class arrayHolder implements org.omg.CORBA.portable.Streamable
{
public int value[] = null;
public arrayHolder ()
{
}
public arrayHolder (int[] initialValue)
{
value = initialValue;
}
public void _read (org.omg.CORBA.portable.InputStream i)
{
value = ArithApp.AddPackage.arrayHelper.read (i);
}
public void _write (org.omg.CORBA.portable.OutputStream o)
{
ArithApp.AddPackage.arrayHelper.write (o, value);
}
public org.omg.CORBA.TypeCode _type ()
{
return ArithApp.AddPackage.arrayHelper.type ();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?