org.omg.CORBA
Class StructMember

java.lang.Object
  extended by org.omg.CORBA.StructMember
All Implemented Interfaces:
Serializable, IDLEntity

public final class StructMember
extends Object
implements IDLEntity, Serializable

The component, describing the member of CORBA IDL struct.

See Also:
Serialized Form

Field Summary
 String name
          The name of the structure member.
 TypeCode type
          The typecode of the structure member.
 IDLType type_def
          The IDL type of the structure member.
 
Constructor Summary
StructMember()
          Creates a structure member with all fields left with the default value null.
StructMember(String a_name, TypeCode a_type, IDLType a_type_def)
          Creates a structure member.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

type_def

public IDLType type_def
The IDL type of the structure member.


name

public String name
The name of the structure member.


type

public TypeCode type
The typecode of the structure member.

Constructor Detail

StructMember

public StructMember()
Creates a structure member with all fields left with the default value null.


StructMember

public StructMember(String a_name,
                    TypeCode a_type,
                    IDLType a_type_def)
Creates a structure member.

Parameters:
a_name - member name.
a_type - member type code.
a_type_def - member IDL type definition.