public interface ARG_IN
ARG_IN.value
是用于指示在使用动态调用接口(DII)执行的调用期间传递参数的方向的可能值之一。
下面的代码片段显示了一个典型的用法:
ORB orb = ORB.init(args, null);
org.omg.CORBA.NamedValue nv = orb.create_named_value(
"IDLArgumentIdentifier", myAny, org.omg.CORBA.ARG_IN.value);
NamedValue
Modifier and Type | Field and Description |
---|---|
static int |
value
指示输入参数的值。
|
static final int value
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.