|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList
aspose.pdf.GraphNotes
public class GraphNotes
Represents a collection of GraphNote objects.
Typical usages are the following:
| Field Summary |
|---|
| Fields inherited from class java.util.AbstractList |
|---|
modCount |
| Constructor Summary | |
|---|---|
GraphNotes()
Constructor - initializes a new instance of the GraphNotes class. |
|
| Method Summary | |
|---|---|
void |
add(GraphNote graphNote)
Adds a new GraphNote object into the collection. |
java.lang.Object |
completeClone()
Clones a new GraphNotes object. |
void |
copyTo(GraphNote[] graphNoteArray,
int index)
Copies the elements to a GraphNote object array, starting at a specified array index. |
GraphNote |
getGraphNote(int index)
Gets a GraphNote object from the collection according to GraphNote index. |
void |
insert(GraphNote noteToInsertAfter,
GraphNote newNote)
Inserts a new GraphNote object into the collection after specified GraphNote object. |
void |
insert(int index,
GraphNote graphNote)
Inserts a new GraphNote object into the collection at specified position. |
void |
remove(GraphNote noteToRemove)
Removes a GraphNote object from the collection. |
void |
setGraphNote(GraphNote value,
int index)
Sets a GraphNote object to the collection according to its index. |
| Methods inherited from class java.util.ArrayList |
|---|
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, removeRange, 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, removeAll, retainAll, toString |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.List |
|---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList |
| Constructor Detail |
|---|
public GraphNotes()
GraphNotes class.
| Method Detail |
|---|
public void add(GraphNote graphNote)
GraphNote object into the collection.
graphNote - The GraphNote object to be added.public GraphNote getGraphNote(int index)
GraphNote object from the collection according to GraphNote index.
index - position where GraphNote object to be read.
GraphNote object.
public void setGraphNote(GraphNote value,
int index)
GraphNote object to the collection according to its index.
value - An GraphNote object.index - position where GraphNote object to be added.public void remove(GraphNote noteToRemove)
GraphNote object from the collection.
noteToRemove - The GraphNote object to be removed..
public void insert(int index,
GraphNote graphNote)
GraphNote object into the collection at specified position.
index - The zero-based index at which new GraphNote object
should be inserted.graphNote - The GraphNote object to be inserted.
public void insert(GraphNote noteToInsertAfter,
GraphNote newNote)
GraphNote object into the collection after specified GraphNote object.
noteToInsertAfter - The GraphNote object to insert after.newNote - The GraphNote object to be inserted.
public void copyTo(GraphNote[] graphNoteArray,
int index)
GraphNote object array, starting at a specified array index.
graphNoteArray - The GraphNote object array.index - The start index.public java.lang.Object completeClone()
GraphNotes object.
GraphNotes object.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||