org.jacorb.orb
Class TaggedComponentList
public
class
TaggedComponentList
extends Object
implements Cloneable
Represents a list of tagged components from an IOR, along with some
generic methods to find and access individual components.
Version: $Id: TaggedComponentList.java,v 1.8 2006/06/27 10:50:53 alphonse.bendt Exp $
Author: Andre Spiegel
Method Summary |
void | addAll(TaggedComponentList other)
Adds an entire TaggedComponentList to this list. |
void | addComponent(int tag, Object data, Class helper)
Adds a tagged component to this list. |
void | addComponent(int tag, byte[] data)
Adds a tagged component to this list. |
void | addComponent(TaggedComponent component)
Adds a tagged component to this list. |
TaggedComponent[] | asArray() |
Object | clone() |
TaggedComponent | get(int index) |
Object | getComponent(int tag, Class helper)
Searches for a component with the given tag in this component list.
|
List | getComponents(int tag, Class helper)
Returns a List of all components with the given tag from this
TaggedComponentList. |
String | getStringComponent(int tag)
Returns the first component with the given tag, which is assumed
to be a CDR string. |
boolean | isEmpty() |
int | size() |
public TaggedComponentList(InputStream in)
Constructs a TaggedComponentList object from a CDR representation
of an array of tagged components.
public TaggedComponentList(byte[] data)
Constructs a TaggedComponentList from a CDR encapsulation of
an array of tagged components.
public TaggedComponentList()
Constructs a new, empty TaggedComponentList.
Adds an entire TaggedComponentList to this list.
public void addComponent(int tag, Object data, Class helper)
Adds a tagged component to this list. The component's data
is created by marshaling the given data Object using the
write() method of the given helper class.
public void addComponent(int tag, byte[] data)
Adds a tagged component to this list.
public void addComponent(TaggedComponent component)
Adds a tagged component to this list.
public TaggedComponent[] asArray()
public Object clone()
public TaggedComponent get(int index)
public Object getComponent(int tag, Class helper)
Searches for a component with the given tag in this component list.
If one is found, this method reads the corresponding data with the given
helper class, and returns the resulting object, otherwise returns
null.
public List getComponents(int tag, Class helper)
Returns a List of all components with the given tag from this
TaggedComponentList. Each individual component is read with
the given helper class. If no components with the given tag
can be found, an empty list is returned.
public String getStringComponent(int tag)
Returns the first component with the given tag, which is assumed
to be a CDR string. If no component with the given tag exists,
returns null.
public boolean isEmpty()
public int size()