All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.beans.mb.MBManifestSection

java.lang.Object
   |
   +----com.ibm.beans.mb.MBManifestSection

public class MBManifestSection
extends Object
implements Serializable
MBManifestSection is for use only by persons who intend to subclass RepositoryModel to handle a custom repository type. If you are not writing a new RepositoryModel, please hit the Back button on your browser now. Thank you.


Constructor Index

 o MBManifestSection(int)

Method Index

 o add(String, String)
Returns previous value of this key, or null if the key didn't exist.
 o elements()
elements returns an Enumeration of the keys in the Section hashtable.
 o getID()
Gets the Section id.
 o getMBInst()
getMBInst returns the MBInstN key of this MBManifestSection.
 o getMBInstValue()
getMBInstValue returns the MBInstN value (ie, type information) of this MBManifestSection.
 o getObjectByteArray()
Gets objectByteArray.
 o getPassthroughKeys()
Gets a Vector of all passthrough property keys in this MBManifestSection.
 o query(String)
Returns the value of key, or null if the key doesn't exist.
 o setID(int)
Sets the Section id.
 o setObjectByteArray(byte[])
Sets objectByteArray.

Constructors

 o MBManifestSection
 protected MBManifestSection(int id)

Methods

 o getID
 protected int getID()
Gets the Section id.

Returns:
The Section ID.
 o setID
 protected void setID(int id)
Sets the Section id.

Parameters:
id - The Section ID.
 o getObjectByteArray
 protected byte[] getObjectByteArray()
Gets objectByteArray.

Returns:
The ByteArray contents of the MBElement associated with this MBManifestSection.
 o setObjectByteArray
 protected void setObjectByteArray(byte b[])
Sets objectByteArray.

Parameters:
b - The ByteArray contents of the MBElement to be associated with this MBManifestSection.
 o add
 protected String add(String key,
                      String value)
Returns previous value of this key, or null if the key didn't exist.

Parameters:
key - Key value.
value - Value associated with key.
Returns:
The previous value, or null if there is no previous value.
 o query
 protected String query(String key)
Returns the value of key, or null if the key doesn't exist.

Parameters:
key - Key value.
Returns:
The value, or null if the key doesn't exist.
 o elements
 protected Enumeration elements()
elements returns an Enumeration of the keys in the Section hashtable. This can be used to step through the pairs of the Section.

Returns:
The enumeration.
 o getMBInst
 protected String getMBInst()
getMBInst returns the MBInstN key of this MBManifestSection.

Returns:
The MBInstN key.
 o getMBInstValue
 protected String getMBInstValue()
getMBInstValue returns the MBInstN value (ie, type information) of this MBManifestSection.

Returns:
The type information associated with the MBInstN key in this MBManifestSection.
 o getPassthroughKeys
 protected Vector getPassthroughKeys()
Gets a Vector of all passthrough property keys in this MBManifestSection. "Passthrough" properties are properties other than

Returns:
A Vector of passthrough property keys.
See Also:
MBManifestSection

All Packages  Class Hierarchy  This Package  Previous  Next  Index