aspose.pdf
Class TabStops

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractList<E>
          extended by java.util.ArrayList
              extended by aspose.pdf.TabStops
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, java.lang.Iterable, java.util.Collection, java.util.List, java.util.RandomAccess

public class TabStops
extends java.util.ArrayList

Represents a collection of TabStop objects.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
TabStops()
          Initializes a new instance of the TabStop class.
 
Method Summary
 TabStop add()
          Initializes a new instance of the TabStop class and add it to the TabStops collection.
 TabStop add(float position)
          Initializes a new instance of the TabStop class with specified position and add it to the TabStops collection.
 TabStop add(float position, TabLeaderType leaderType)
          Initializes a new instance of the TabStop class with specified position and leader type and add it to the TabStops collection.
 void add(java.lang.String position)
          Initializes a new instance of the TabStop class with specified position and add it to the TabStops collection.
 java.lang.Object Clone()
          Clones a new TabStop objects.
 TabStop getTabStop(int index)
          Gets a TabStop object from the collection according to TabStop index.
 void insert(float position)
          Initializes a new instance of the TabStop class with specified position add it to the TabStops collection.
 void remove(TabStop stop)
          Removes a TabStop object from the collection.
 void setTabStop(int index, TabStop value)
          Sets a TabStop object to the collection with the specified 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

TabStops

public TabStops()
Initializes a new instance of the TabStop class.

Method Detail

add

public TabStop add()
Initializes a new instance of the TabStop class and add it to the TabStops collection.

Returns:
The new TabStop object.

add

public TabStop add(float position)
Initializes a new instance of the TabStop class with specified position and add it to the TabStops collection.

Parameters:
position - The position of the tab stop.
Returns:
The new TabStop object.

add

public void add(java.lang.String position)
Initializes a new instance of the TabStop class with specified position and add it to the TabStops collection.

Parameters:
position - The position of the tab stop.

insert

public void insert(float position)
Initializes a new instance of the TabStop class with specified position add it to the TabStops collection.

Parameters:
position - The position of the tab stop

add

public TabStop add(float position,
                   TabLeaderType leaderType)
Initializes a new instance of the TabStop class with specified position and leader type and add it to the TabStops collection.

Parameters:
position - The position of the tab stop.
leaderType - The leader type of the tab stop.
Returns:
The new TabStop object.

remove

public void remove(TabStop stop)
Removes a TabStop object from the collection.

Parameters:
stop -

Clone

public java.lang.Object Clone()
Clones a new TabStop objects.

Returns:
The new TabStop object.

getTabStop

public TabStop getTabStop(int index)
Gets a TabStop object from the collection according to TabStop index.


setTabStop

public void setTabStop(int index,
                       TabStop value)
Sets a TabStop object to the collection with the specified index.

Parameters:
index -
value -