public interface ExtensibleObject
Slot| Modifier and Type | Method and Description |
|---|---|
void |
addSlot(Slot slot)
Adds a Slot to this object.
|
void |
addSlots(java.util.Collection slots)
Adds more Slots to this object.
|
Slot |
getSlot(java.lang.String slotName)
Gets the slot specified by slotName.
|
java.util.Collection |
getSlots()
Returns the Slots associated with this object.
|
void |
removeSlot(java.lang.String slotName)
Removes a Slot from this object.
|
void |
removeSlots(java.util.Collection slotNames)
Removes specified Slots from this object.
|
void addSlot(Slot slot) throws JAXRException
slot - the Slot object being added to this objectJAXRException - If the Jakarta XML Registries provider encounters an internal errorvoid addSlots(java.util.Collection slots)
throws JAXRException
slots - the Collection of Slot objects being added to this objectJAXRException - If the Jakarta XML Registries provider encounters an internal errorSlotvoid removeSlot(java.lang.String slotName)
throws JAXRException
slotName - the name for the Slot object being removed from this objectJAXRException - If the Jakarta XML Registries provider encounters an internal errorvoid removeSlots(java.util.Collection slotNames)
throws JAXRException
slotNames - the Collection of names for Slot objects being removed from this object. Must be a Collection of StringsJAXRException - If the Jakarta XML Registries provider encounters an internal errorSlotSlot getSlot(java.lang.String slotName) throws JAXRException
slotName - the name of the desired Slot objectJAXRException - If the Jakarta XML Registries provider encounters an internal errorjava.util.Collection getSlots()
throws JAXRException
JAXRException - If the Jakarta XML Registries provider encounters an internal errorSlot