FileDocCategorySizeDatePackage
StructMember.javaAPI DocJava SE 5 API2056Fri Aug 26 14:58:32 BST 2005org.omg.CORBA

StructMember

public final class StructMember extends Object implements org.omg.CORBA.portable.IDLEntity
Describes a member of an IDL struct in the Interface Repository, including the name of the struct member, the type of the struct member, and the typedef that represents the IDL type of the struct member described the struct member object.

Fields Summary
public String
name
The name of the struct member described by this StructMember object.
public org.omg.CORBA.TypeCode
type
The type of the struct member described by this StructMember object.
public org.omg.CORBA.IDLType
type_def
The typedef that represents the IDL type of the struct member described by this StructMember object.
Constructors Summary
public StructMember()
Constructs a default StructMember object.

 
public StructMember(String __name, org.omg.CORBA.TypeCode __type, org.omg.CORBA.IDLType __type_def)
Constructs a StructMember object initialized with the given values.

param
__name a String object with the name of the struct member
param
__type a TypeCode object describing the type of the struct member
param
__type_def an IDLType object representing the IDL type of the struct member

	name = __name;
	type = __type;
	type_def = __type_def;
    
Methods Summary