Searched refs:TypeCode (Results 1 - 25 of 202) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DTypeCode.java34 public class TypeCode { class
39 public static final TypeCode BOOLEAN = new TypeCode("boolean", 'Z');
40 public static final TypeCode CHAR = new TypeCode("char", 'C');
41 public static final TypeCode FLOAT = new TypeCode("float", 'F');
42 public static final TypeCode DOUBLE = new TypeCode("double", 'D');
43 public static final TypeCode BYT
106 private TypeCode(String name, char value) { method in class:TypeCode
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DStreamable.java27 import org.omg.CORBA.TypeCode;
54 * Retrieves the <code>TypeCode</code> object corresponding to the value
57 * @return the <code>TypeCode</code> object for the value held in the holder
59 TypeCode _type();
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DIDLTypeOperations.java55 * @return the <code>TypeCode</code> defined by this object.
57 org.omg.CORBA.TypeCode type ();
H A DExceptionList.java31 * modifiable list of <code>TypeCode</code>s of the exceptions.
40 * object with no <code>TypeCode</code> objects in it.
42 * To add items to the list, you first create a <code>TypeCode</code> object
47 * the number of <code>TypeCode</code> objects in the list, and after
57 * Retrieves the number of <code>TypeCode</code> objects in this
60 * @return the number of <code>TypeCode</code> objects in this
67 * Adds a <code>TypeCode</code> object describing an exception
70 * @param exc the <code>TypeCode</code> object to be added
73 public abstract void add(TypeCode exc);
76 * Returns the <code>TypeCode</cod
[all...]
H A DTypeCode.java35 * <code>TypeCode</code> objects are used:
42 * <code>TypeCode</code> object.
47 * The representation of a <code>TypeCode</code> object is opaque,
48 * but abstractly, a <code>TypeCode</code> object consists of:
54 * <code>TypeCode</code> object
57 * The <code>TypeCode</code> describing OMG IDL type
65 * <code>TypeCode</code> objects can be obtained in various ways:
68 * a basic IDL type. This method creates a <code>TypeCode</code> object
72 * <P>For example, the following creates a <code>TypeCode</code>
75 * org.omg.CORBA.TypeCode tcStrin
170 public abstract class TypeCode implements IDLEntity { class in inherits:IDLEntity
[all...]
H A DTypeCodeHolder.java33 * The Holder for <tt>TypeCode</tt>. For more information on
36 * A Holder class for a <code>TypeCode</code> object
38 * If an IDL operation signature has an IDL <code>TypeCode</code> as an "out"
55 * The <code>TypeCode</code> value held by
58 public TypeCode value;
70 * <code>TypeCode</code> object.
71 * @param initial the <code>TypeCode</code> object with which to initialize
75 public TypeCodeHolder(TypeCode initial) {
101 * Returns the TypeCode corresponding to the value held in
104 * @return the TypeCode o
[all...]
H A DStructMember.java59 public org.omg.CORBA.TypeCode type;
79 * @param __type a <code>TypeCode</code> object describing the type of the struct
84 public StructMember(String __name, org.omg.CORBA.TypeCode __type, org.omg.CORBA.IDLType __type_def) {
H A DUnionMember.java59 public org.omg.CORBA.TypeCode type;
84 * @param __type a <code>TypeCode</code> object describing the type of this
89 public UnionMember(String __name, org.omg.CORBA.Any __label, org.omg.CORBA.TypeCode __type, org.omg.CORBA.IDLType __type_def) {
H A DORB.java69 * <li><code>TypeCode</code>
190 // use a TypeCode as a storage depot for illicitly passing
273 * as a factory for <code>TypeCode</code> objects, which are used by
277 * TypeCode</code> object for a <code>union</code>).
282 * <code>TypeCode</code> objects. Any <code>TypeCode</code> objects
288 * creating <code>TypeCode</code> objects are invoked.
714 * Retrieves the <code>TypeCode</code> object that represents
719 * @return the requested <code>TypeCode</code> object
721 abstract public TypeCode get_primitive_t
[all...]
H A DAny.java45 * <LI>a <code>TypeCode</code> object describing the type of the data
47 * a <code>TypeCode</code> object for an array contains
50 * second field of the <code>TypeCode</code> object is itself a
51 * <code>TypeCode</code> object.)
115 * @return the <code>TypeCode</code> object containing type information
118 abstract public TypeCode type();
122 * to the given <code>TypeCode</code> object and clears its value.
131 * @param t the <code>TypeCode</code> object giving
135 abstract public void type(TypeCode t);
148 * @param t a <code>TypeCode</cod
[all...]
H A DValueMember.java73 public org.omg.CORBA.TypeCode type;
112 public ValueMember(String __name, String __id, String __defined_in, String __version, org.omg.CORBA.TypeCode __type, org.omg.CORBA.IDLType __type_def, short __access) {
H A DWrongTransactionHelper.java54 private static org.omg.CORBA.TypeCode __typeCode = null;
56 synchronized public static org.omg.CORBA.TypeCode type ()
60 synchronized (org.omg.CORBA.TypeCode.class)
70 org.omg.CORBA.TypeCode _tcOf_members0 = null;
H A Dir.idl28 * It also contains the TypeCode creation APIs in CORBA::ORB
131 TypeCode type;
139 TypeCode type;
157 TypeCode type;
308 to the TypeCode describing the type, and is used in defining the
312 readonly attribute TypeCode type;
378 readonly attribute TypeCode type;
388 TypeCode type;
408 TypeCode type;
426 readonly attribute TypeCode discriminator_typ
[all...]
H A DAnyHolder.java98 * Returns the <code>TypeCode</code> object corresponding to the value
101 * @return the TypeCode of the value held in
104 public TypeCode _type() {
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/portable/
H A DValueHelper.java28 import org.omg.CORBA.TypeCode;
42 TypeCode get_type();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DExceptionListImpl.java38 import org.omg.CORBA.TypeCode;
58 public void add(TypeCode tc)
63 public TypeCode item(int index)
67 return (TypeCode) _exceptions.elementAt(index);
H A DTypeCodeImplHelper.java36 private static String _id = "IDL:omg.org/CORBA/TypeCode:1.0";
38 public static void insert (org.omg.CORBA.Any a, org.omg.CORBA.TypeCode that)
46 public static org.omg.CORBA.TypeCode extract (org.omg.CORBA.Any a)
51 private static org.omg.CORBA.TypeCode __typeCode = null;
52 synchronized public static org.omg.CORBA.TypeCode type ()
66 public static org.omg.CORBA.TypeCode read (org.omg.CORBA.portable.InputStream istream)
71 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.TypeCode value)
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DIDLTypeOperations.java37 org.omg.CORBA.TypeCode type ();
H A DExceptionDescription.java41 public org.omg.CORBA.TypeCode type = null;
47 public ExceptionDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _type)
H A DAttributeDescription.java41 public org.omg.CORBA.TypeCode type = null;
48 public AttributeDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _type, com.sun.org.omg.CORBA.AttributeMode _mode)
H A DParameterDescription.java40 public org.omg.CORBA.TypeCode type = null;
51 //public ParameterDescription (String _name, org.omg.CORBA.TypeCode _type, com.sun.org.omg.CORBA.IDLType _type_def, com.sun.org.omg.CORBA.ParameterMode _mode)
52 public ParameterDescription (String _name, org.omg.CORBA.TypeCode _type, org.omg.CORBA.IDLType _type_def, com.sun.org.omg.CORBA.ParameterMode _mode)
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynArrayImpl.java28 import org.omg.CORBA.TypeCode;
57 protected DynArrayImpl(ORB orb, TypeCode typeCode) {
65 TypeCode typeCode = any.type();
67 TypeCode contentType = getContentType();
93 // from the internal TypeCode information with default values.
98 TypeCode typeCode = any.type();
100 TypeCode contentType = getContentType();
118 // If one or more elements have a type that is inconsistent with the DynArrays TypeCode,
H A DDynAnyCollectionImpl.java28 import org.omg.CORBA.TypeCode;
63 protected DynAnyCollectionImpl(ORB orb, TypeCode typeCode) {
71 protected void createDefaultComponentAt(int i, TypeCode contentType) {
80 protected TypeCode getContentType() {
123 // If one or more elements have a type that is inconsistent with the collections TypeCode,
139 TypeCode expectedTypeCode = getContentType();
186 TypeCode expectedTypeCode = getContentType();
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A Dir.idl28 * It also contains the TypeCode creation APIs in CORBA::ORB
130 TypeCode type;
138 TypeCode type;
156 TypeCode type;
307 to the TypeCode describing the type, and is used in defining the
311 readonly attribute TypeCode type;
377 readonly attribute TypeCode type;
387 TypeCode type;
407 TypeCode type;
425 readonly attribute TypeCode discriminator_typ
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBSingleton.java57 import org.omg.CORBA.TypeCode;
131 * used as a factory for immutable TypeCode instances.
155 public TypeCode create_struct_tc(String id,
162 public TypeCode create_union_tc(String id,
164 TypeCode discriminator_type,
175 public TypeCode create_enum_tc(String id,
182 public TypeCode create_alias_tc(String id,
184 TypeCode original_type)
189 public TypeCode create_exception_tc(String id,
196 public TypeCode create_interface_t
[all...]

Completed in 105 milliseconds

123456789