- java.lang.Object
-
- org.omg.CORBA.ServiceInformationHolder
-
- All Implemented Interfaces:
-
Streamable
public final class ServiceInformationHolder extends Object implements Streamable
持有人ServiceInformation
。 有关Holder文件的更多信息,请参阅"Generated Files: Holder Files" 。用于在IDL方法中存储“out”和“inout”参数的
ServiceInformation
对象的持有者类。 如果IDL方法签名具有作为“out”或“inout”参数的IDLxxx
,则程序员必须将ServiceInformationHolder
的实例作为方法调用中的相应参数传递; 对于“inout”参数,程序员还必须填写要发送到服务器的“in”值。 在方法调用返回之前,ORB将填写与从服务器返回的“out”值对应的值。如果
myServiceInformationHolder
是实例ServiceInformationHolder
,存储在其值value
字段可以与被访问myServiceInformationHolder.value
。
-
-
Field Summary
Fields Modifier and Type Field 描述 ServiceInformation
value
这ServiceInformationHolder
对象在其value
字段中持有的ServiceInformation
值。
-
构造方法摘要
构造方法 Constructor 描述 ServiceInformationHolder()
构造一个新的ServiceInformationHolder
对象,其value
字段初始化为null。ServiceInformationHolder(ServiceInformation arg)
构造一个新的ServiceInformationHolder
对象,其value
字段初始化为给定的ServiceInformation
对象。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 void
_read(InputStream in)
从输入流in
读取未编组的数据,并将其分配给该ServiceInformationHolder
对象中的value
字段。TypeCode
_type()
检索TypeCode
对应于该保存的值对象ServiceInformationHolder
对象value
场。void
_write(OutputStream out)
将此ServiceInformationHolder
对象的value
字段中的值value
到输出流out
。
-
-
-
字段详细信息
-
value
public ServiceInformation value
这ServiceInformationHolder
对象在其value
字段中持有的ServiceInformation
值。
-
-
构造方法详细信息
-
ServiceInformationHolder
public ServiceInformationHolder()
构造一个新的ServiceInformationHolder
对象,其value
字段初始化为null。
-
ServiceInformationHolder
public ServiceInformationHolder(ServiceInformation arg)
构造一个新的ServiceInformationHolder
对象,其value
字段初始化为给定的ServiceInformation
对象。- 参数
-
arg
-ServiceInformation
对象,用于初始化新创建的ServiceInformationHolder
对象的value
字段
-
-
方法详细信息
-
_write
public void _write(OutputStream out)
将此ServiceInformationHolder
对象的value
字段中的值value
到输出流out
。- Specified by:
-
_write
在接口Streamable
- 参数
-
out
- 将包含CDR格式数据的OutputStream
对象
-
_read
public void _read(InputStream in)
从输入流in
读取未编组的数据,并将其分配给此ServiceInformationHolder
对象中的value
字段。- Specified by:
-
_read
在接口Streamable
- 参数
-
in
-InputStream
对象,其中包含来自电线的CDR格式数据
-
_type
public TypeCode _type()
检索TypeCode
对应于该保存的值对象ServiceInformationHolder
对象value
场。- Specified by:
-
_type
在接口Streamable
- 结果
-
该
ServiceInformationHolder
对象中保存的值的类型代码
-
-