|
XFA4J | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectcom.adobe.xfa.Obj
com.adobe.xfa.ListBase
public abstract class ListBase
A base class for all lists that are used in the XFA scripting object model. That includes primarily node lists, but also lists of deltas. This class combined with XFAList correspond to the C++ XFAListImpl class.
| Method Summary | |
|---|---|
abstract void |
append(Obj oObj)
Appends an object to the end of this list. |
abstract void |
insert(Obj newObj,
Obj refObj)
Inserts an object before a specific node in this list. |
abstract Obj |
item(int n)
Gets this list's n'th object. |
abstract int |
length()
Returns the number of objects in this list. |
abstract void |
remove(Obj obj)
Removes an object from this list. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public abstract void append(Obj oObj)
oObj - the node to be appended.
public abstract void insert(Obj newObj,
Obj refObj)
newObj - the object to be inserted.refObj - the object to insert before.public abstract Obj item(int n)
n - the 0-based index of the node within this list.
public abstract int length()
public abstract void remove(Obj obj)
obj - the object to be removed.
|
XFA4J | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||