gnu.CORBA.typecodes

Class RecordTypeCode

Implemented Interfaces:
IDLEntity, Serializable

public class RecordTypeCode
extends GeneralTypeCode

The type code that also has the member property getters supported.
See Also:
Serialized Form

Nested Class Summary

static class
RecordTypeCode.Field
The individual field of the record.

Field Summary

protected CorbaList
members
The members of this data structure.

Fields inherited from class gnu.CORBA.typecodes.GeneralTypeCode

UNSET

Fields inherited from class gnu.CORBA.typecodes.PrimitiveTypeCode

kind

Constructor Summary

RecordTypeCode(TCKind a_kind)
Creates the type code of the given kind.

Method Summary

void
add(RecordTypeCode.Field field)
void
add(StructMember m)
Adds a new field, taking values from the passed StructMember.
void
add(UnionMember m)
Adds a new field, taking values from the passed UnionMember.
void
add(ValueMember m)
Adds a new field, taking values from the passed ValueMember.
int
default_index()
TypeCode
discriminator_type()
RecordTypeCode.Field
field()
Creates, adds and returns new field.
RecordTypeCode.Field
getField(int p)
int
member_count()
Any
member_label(int index)
String
member_name(int index)
TypeCode
member_type(int index)
short
member_visibility(int index)
void
setDefaultIndex(int a_default_index)
Set the default index.
void
setDiscriminator_type(TypeCode a_discriminator_type)
Set the discriminator type.

Methods inherited from class gnu.CORBA.typecodes.GeneralTypeCode

concrete_base_type, content_type, equal, equivalent, id, length, name, setConcreteBase_type, setContentType, setId, setLength, setName, setTypeModifier, type_modifier

Methods inherited from class gnu.CORBA.typecodes.PrimitiveTypeCode

concrete_base_type, content_type, default_index, discriminator_type, equal, equivalent, fixed_digits, fixed_scale, get_compact_typecode, id, kind, length, member_count, member_label, member_name, member_type, member_visibility, name, type_modifier

Methods inherited from class org.omg.CORBA.TypeCode

concrete_base_type, content_type, default_index, discriminator_type, equal, equivalent, fixed_digits, fixed_scale, get_compact_typecode, id, kind, length, member_count, member_label, member_name, member_type, member_visibility, name, type_modifier

Methods inherited from class java.lang.Object

clone, equals, extends Object> getClass, finalize, hashCode, notify, notifyAll, toString, wait, wait, wait

Field Details

members

protected CorbaList members
The members of this data structure.

Constructor Details

RecordTypeCode

public RecordTypeCode(TCKind a_kind)
Creates the type code of the given kind.

Method Details

add

public void add(RecordTypeCode.Field field)

add

public void add(StructMember m)
Adds a new field, taking values from the passed StructMember.

add

public void add(UnionMember m)
Adds a new field, taking values from the passed UnionMember.

add

public void add(ValueMember m)
Adds a new field, taking values from the passed ValueMember.

default_index

public int default_index()
            throws BadKind
Overrides:
default_index in interface PrimitiveTypeCode

discriminator_type

public TypeCode discriminator_type()
            throws BadKind
Overrides:
discriminator_type in interface PrimitiveTypeCode

field

public RecordTypeCode.Field field()
Creates, adds and returns new field.

getField

public RecordTypeCode.Field getField(int p)

member_count

public int member_count()
Overrides:
member_count in interface PrimitiveTypeCode

member_label

public Any member_label(int index)
            throws BadKind,
                   Bounds
Overrides:
member_label in interface PrimitiveTypeCode

member_name

public String member_name(int index)
            throws BadKind
Overrides:
member_name in interface PrimitiveTypeCode

member_type

public TypeCode member_type(int index)
            throws BadKind,
                   Bounds
Overrides:
member_type in interface PrimitiveTypeCode

member_visibility

public short member_visibility(int index)
            throws BadKind,
                   Bounds
Overrides:
member_visibility in interface PrimitiveTypeCode

setDefaultIndex

public void setDefaultIndex(int a_default_index)
Set the default index.

setDiscriminator_type

public void setDiscriminator_type(TypeCode a_discriminator_type)
Set the discriminator type.

RecordTypeCode.java -- Copyright (C) 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.