FileDocCategorySizeDatePackage
ValueMember.javaAPI DocJava SE 5 API3108Fri Aug 26 14:58:34 BST 2005org.omg.CORBA

ValueMember

public final class ValueMember extends Object implements org.omg.CORBA.portable.IDLEntity
A description in the Interface Repository of a member of a value object.

Fields Summary
public String
name
The name of the value member described by this ValueMember object.
public String
id
The repository ID of the value member described by this ValueMember object;
public String
defined_in
The repository ID of the value in which this member is defined.
public String
version
The version of the value in which this member is defined.
public org.omg.CORBA.TypeCode
type
The type of of this value member.
public org.omg.CORBA.IDLType
type_def
The typedef that represents the IDL type of the value member described by this ValueMember object.
public short
access
The type of access (public, private) for the value member described by this ValueMember object.
Constructors Summary
public ValueMember()
Constructs a default ValueMember object.

 
public ValueMember(String __name, String __id, String __defined_in, String __version, org.omg.CORBA.TypeCode __type, org.omg.CORBA.IDLType __type_def, short __access)
Constructs a ValueMember object initialized with the given values.

param
__name The name of the value member described by this ValueMember object.
param
__id The repository ID of the value member described by this ValueMember object;
param
__defined_in The repository ID of the value in which this member is defined.
param
__version The version of the value in which this member is defined.
param
__type The type of of this value member.
param
__type_def The typedef that represents the IDL type of the value member described by this ValueMember object.
param
__access The type of access (public, private) for the value member described by this ValueMember object.

	name = __name;
	id = __id;
	defined_in = __defined_in;
	version = __version;
	type = __type;
	type_def = __type_def;
	access = __access;
    
Methods Summary