|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractCollection
java.util.AbstractList
java.util.ArrayList
com.crystaldecisions.sdk.occa.report.lib.ReportSDKVector
com.crystaldecisions.sdk.occa.report.lib.PropertyBags
This class defines a collection of PropertyBag
objects.
Constructor Summary | |
PropertyBags()
Constructs a new property bag collection. |
|
PropertyBags(PropertyBags src)
Constructs a new PropertyBags object with the same contents as the specified PropertyBags object.
|
Method Summary | |
void |
add(int index,
java.lang.Object element)
Inserts the specified element at the specified position in this collection. |
boolean |
add(java.lang.Object o)
Appends the specified element to the end of this collection. |
java.lang.Object |
createMember(java.lang.String eleName,
org.xml.sax.Attributes attrs,
XMLSerializationContext ctxt,
java.util.Map objState,
boolean[] bLoaded)
For internal use only. |
void |
endElement(java.lang.String eleName,
java.util.Map objState)
For internal use only. |
PropertyBag |
getPropertyBag(int index)
Returns the property bag at the specified index. |
void |
readElement(java.lang.String eleName,
java.lang.String sVal,
org.xml.sax.Attributes attrs,
java.util.Map objState)
For internal use only. |
void |
save(XMLWriter writer,
java.lang.String sTag,
XMLSerializationContext ctxt)
For internal use only. |
void |
save(XMLWriter writer,
XMLSerializationContext ctxt)
For internal use only. |
void |
saveContents(XMLWriter writer,
XMLSerializationContext ctxt)
For internal use only. |
void |
startElement(java.lang.String eleName,
java.util.Map objState,
org.xml.sax.Attributes attrs)
For internal use only. |
Methods inherited from class com.crystaldecisions.sdk.occa.report.lib.ReportSDKVector |
addElement, clone, copyTo, elementAt, findIndexOf, hasContent, insertElementAt, removeAllElements |
Methods inherited from class java.util.ArrayList |
addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, set, size, toArray, toArray, trimToSize |
Methods inherited from class java.util.AbstractList |
equals, hashCode, iterator, listIterator, listIterator, subList |
Methods inherited from class java.util.AbstractCollection |
containsAll, remove, removeAll, retainAll, toString |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.crystaldecisions.sdk.occa.report.lib.IClone |
clone, copyTo, hasContent |
Methods inherited from interface java.util.List |
containsAll, equals, hashCode, iterator, listIterator, listIterator, remove, removeAll, retainAll, subList |
Constructor Detail |
public PropertyBags(PropertyBags src)
Constructs a new PropertyBags
object with the same contents as the specified PropertyBags
object.
This is equivalent to creating a new copy.
src
- The PropertyBags
object to be copied.public PropertyBags()
Constructs a new property bag collection.
Method Detail |
public java.lang.Object createMember(java.lang.String eleName, org.xml.sax.Attributes attrs, XMLSerializationContext ctxt, java.util.Map objState, boolean[] bLoaded)
For internal use only.
public void endElement(java.lang.String eleName, java.util.Map objState)
For internal use only.
public PropertyBag getPropertyBag(int index)
Returns the property bag at the specified index.
index
- The index of the desired property bag.
PropertyBag
object at the specified index.public void readElement(java.lang.String eleName, java.lang.String sVal, org.xml.sax.Attributes attrs, java.util.Map objState)
For internal use only.
public void save(XMLWriter writer, XMLSerializationContext ctxt) throws java.io.IOException
For internal use only.
java.io.IOException
public void save(XMLWriter writer, java.lang.String sTag, XMLSerializationContext ctxt) throws java.io.IOException
For internal use only.
java.io.IOException
public void saveContents(XMLWriter writer, XMLSerializationContext ctxt) throws java.io.IOException
For internal use only.
java.io.IOException
public void startElement(java.lang.String eleName, java.util.Map objState, org.xml.sax.Attributes attrs)
For internal use only.
public boolean add(java.lang.Object o)
Appends the specified element to the end of this collection.
Note: Only instances of the IValue
interface can
be added to a Values
collection.
add
in interface java.util.List
o
- element to be added to the collection.
true
if this collection changed as a result of the
call.
java.lang.ClassCastException
- if the class of the specified element prevents it
from being added to this collection.
java.lang.NullPointerException
- if the specified element is null
and this
collection does not support null elements.public void add(int index, java.lang.Object element)
Inserts the specified element at the specified position in this collection. Shifts the element currently at that position (if any) and any subsequent elements to the right, adding one to their indices.
add
in interface java.util.List
index
- The index at which the specified element will be inserted.element
- The element to be inserted.
java.lang.IndexOutOfBoundsException
- if index is out of range
(index < 0 || index > size())
.
java.lang.ClassCastException
- class of the specified element prevents it
from being added to this collection.
java.lang.NullPointerException
- if the specified element is null and this
collection does not support null elements.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |