Searched defs:discriminator (Results 1 - 3 of 3) sorted by relevance

/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DDynUnion.java33 * The first component in the union corresponds to the discriminator;
42 * Determines whether the discriminator associated with this union has been assigned
44 * @return <code>true</code> if the discriminator has a default value;
50 * Determines whether the discriminator associated with this union gets assigned
52 * @param arg <code>true</code> if the discriminator gets assigned a default value
58 * of the discriminator in order to insert/get the discriminator value.
59 * @return a <code>DynAny</code> object reference representing the discriminator value
61 public org.omg.CORBA.DynAny discriminator(); method in interface:DynUnion
64 * Returns the TCKind object associated with the discriminator o
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DTargetAddress.java48 public short discriminator () method in class:TargetAddress
70 private void verifyobject_key (short discriminator) argument
72 if (discriminator != com.sun.corba.se.impl.protocol.giopmsgheaders.KeyAddr.value)
91 private void verifyprofile (short discriminator) argument
93 if (discriminator != com.sun.corba.se.impl.protocol.giopmsgheaders.ProfileAddr.value)
112 private void verifyior (short discriminator) argument
114 if (discriminator != com.sun.corba.se.impl.protocol.giopmsgheaders.ReferenceAddr.value)
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynUnionImpl.java49 DynAny discriminator = null; field in class:DynUnionImpl
50 // index either points to the discriminator or the named member is it exists.
51 // The currently active member, which is of the same type as the discriminator.
77 discriminator = DynAnyUtil.createMostDerivedDynAny(discriminatorAny, orb, false);
81 components = new DynAny[] {discriminator, currentMember};
88 // The discriminator value is set to a value consistent with the first named member
94 discriminator = DynAnyUtil.createMostDerivedDynAny(memberLabel(0), orb, false);
98 components = new DynAny[] {discriminator, currentMember};
182 discriminator = null;
200 * Returns the current discriminator valu
[all...]

Completed in 243 milliseconds