public abstract class BaseOperatorCollection extends Object implements com.aspose.ms.System.Collections.ICollection
Represents base class for operator collection.
Constructor and Description |
---|
BaseOperatorCollection() |
Modifier and Type | Method and Description |
---|---|
abstract void |
add(Operator op)
Adds new operator into collection.
|
abstract void |
cancelUpdate()
Cancels last update.
|
abstract void |
copyTo(com.aspose.ms.System.Array array,
int index)
Copies operators into operators list.
|
abstract void |
deleteUnrestricted(int index)
internal
|
abstract Operator |
get_Item(int index)
Gets operator by its index.
|
abstract Object |
getSyncRoot()
Gets synchronization object.
|
abstract Operator |
getUnrestricted(int index)
internal
|
abstract void |
insert(int index,
Operator op)
Inserts operator into collection.
|
abstract boolean |
isSynchronized()
Returns true if object is synchronized.
|
abstract com.aspose.ms.System.Collections.IEnumerator |
iterator()
Returns enumerator for collection
|
abstract void |
resumeUpdate()
Resumes document update.
|
abstract void |
set_Item(int index,
Operator value) |
abstract int |
size()
Gets count of operators in the collection.
|
abstract void |
suppressUpdate()
Suppresses update contents data.
|
abstract void |
updateData()
internal
|
public abstract Operator get_Item(int index)
Gets operator by its index.
index
- Index of operator. Numbering is starts from 1.public abstract void set_Item(int index, Operator value)
public abstract com.aspose.ms.System.Collections.IEnumerator iterator()
Returns enumerator for collection
public abstract void copyTo(com.aspose.ms.System.Array array, int index)
Copies operators into operators list.
copyTo
in interface com.aspose.ms.System.Collections.ICollection
array
- Array with operators which must to be copied. This array must be Object[] or Operator[].index
- Starting index from which operators will be copiedpublic abstract int size()
Gets count of operators in the collection.
size
in interface com.aspose.ms.System.Collections.ICollection
public abstract Object getSyncRoot()
Gets synchronization object.
getSyncRoot
in interface com.aspose.ms.System.Collections.ICollection
public abstract boolean isSynchronized()
Returns true if object is synchronized.
isSynchronized
in interface com.aspose.ms.System.Collections.ICollection
public abstract void suppressUpdate()
Suppresses update contents data. The contents stream is not updated until ResumeUpdate is called.
public abstract void resumeUpdate()
Resumes document update. Updates contents stream in case there are any pending changes.
public abstract void insert(int index, Operator op)
Inserts operator into collection.
index
- Index where new operator must be addedop
- Operator which will be instertedpublic abstract void add(Operator op)
Adds new operator into collection.
op
- Operator which must be addedpublic abstract Operator getUnrestricted(int index)
public abstract void updateData()
public abstract void deleteUnrestricted(int index)
public abstract void cancelUpdate()
Cancels last update. This method may be called when the change should not raise contents update.
Copyright © 2014 Aspose. All Rights Reserved.