|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.batik.ext.awt.geom.RectListManager
RectListManager is a class to manage a list of rectangular regions. This class contains methods to add new rectangles to the List, to merge rectangles in the list (based on a cost function), and functions to subract one RectListManager from another. The main purpose of this class is to manage dirty regions on a display (for this reason it uses Rectangle not Rectangle2D).
Field Summary | |
static java.util.Comparator |
comparator
The comparator used to sort the elements of this List. |
Constructor Summary | |
RectListManager()
Construct an initially empty RectListManager. |
|
RectListManager(java.util.Collection rects)
Construct a RectListManager from a Collection of Rectangles |
|
RectListManager(int capacity)
Construct an initially empty RectListManager, with initial capacity. |
|
RectListManager(java.awt.Rectangle rect)
Construct a RectListManager with one rectangle |
|
RectListManager(java.awt.Rectangle[] rects)
Construct a RectListManager from an Array of Rectangles |
|
RectListManager(java.awt.Rectangle[] rects,
int off,
int sz)
Construct a RectListManager from an Array of Rectangles |
|
RectListManager(RectListManager rlm)
Construct a RectListManager from another RectListManager (data is copied). |
Method Summary | |
boolean |
add(java.lang.Object o)
|
void |
add(java.awt.Rectangle rect)
Ensures that this collection contains the specified element |
void |
add(RectListManager rlm)
Adds the contents of rlm to this RectListManager. |
boolean |
addAll(java.util.Collection c)
|
void |
clear()
|
java.lang.Object |
clone()
Standard Object clone method. |
boolean |
contains(java.lang.Object o)
|
boolean |
containsAll(java.util.Collection c)
Returns true if this collection contains all of the elements in the specified collection. |
boolean |
containsAll(RectListManager rlm)
|
RectListManager |
copy()
Similar to clone only strongly typed |
void |
ensureCapacity(int sz)
|
protected void |
insertRects(java.awt.Rectangle[] rects,
int srcPos,
int dstPos,
int len)
|
boolean |
isEmpty()
Returns true if this collection contains no elements. |
java.util.Iterator |
iterator()
Returns an iterator over the elements in this collection |
java.util.ListIterator |
listIterator()
Returns a list iterator of the elements in this list (in proper sequence). |
void |
mergeRects(int overhead,
int lineOverhead)
|
boolean |
remove(java.lang.Object o)
Removes a single instance of the specified element from this collection, if it is present. |
boolean |
remove(java.awt.Rectangle rect)
Removes a single instance of the specified Rectangle from this collection, if it is present. |
boolean |
removeAll(java.util.Collection c)
|
boolean |
removeAll(RectListManager rlm)
|
boolean |
retainAll(java.util.Collection c)
|
boolean |
retainAll(RectListManager rlm)
|
int |
size()
Returns the number of elements currently stored in this collection. |
void |
subtract(RectListManager rlm,
int overhead,
int lineOverhead)
|
java.lang.Object[] |
toArray()
|
java.lang.Object[] |
toArray(java.lang.Object[] a)
|
Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface java.util.Collection |
equals, hashCode |
Field Detail |
public static java.util.Comparator comparator
Constructor Detail |
public RectListManager(java.util.Collection rects)
rects
- Collection that must only contain rectangles.public RectListManager(java.awt.Rectangle[] rects)
rects
- Array of Rectangles, must not contain
any null entries.public RectListManager(java.awt.Rectangle[] rects, int off, int sz)
rects
- Array of Rectangles, must not contain
any null entries in the range [off, off+sz-1].off
- The offset to start copying from in rects.sz
- The number of entries to copy from rects.public RectListManager(RectListManager rlm)
rlm
- RectListManager to copy.public RectListManager(java.awt.Rectangle rect)
rect
- The rectangle to put in this rlm.public RectListManager()
public RectListManager(int capacity)
capacity
- The inital capacity for the list. Setting
this appropriately can save reallocations.Method Detail |
public java.lang.Object clone()
clone
in class java.lang.Object
public RectListManager copy()
public int size()
size
in interface java.util.Collection
public boolean isEmpty()
isEmpty
in interface java.util.Collection
public void clear()
clear
in interface java.util.Collection
public java.util.Iterator iterator()
iterator
in interface java.util.Collection
public java.util.ListIterator listIterator()
public java.lang.Object[] toArray()
toArray
in interface java.util.Collection
public java.lang.Object[] toArray(java.lang.Object[] a)
toArray
in interface java.util.Collection
public boolean add(java.lang.Object o)
add
in interface java.util.Collection
public void add(java.awt.Rectangle rect)
rect
- The rectangle to addpublic boolean addAll(java.util.Collection c)
addAll
in interface java.util.Collection
public boolean contains(java.lang.Object o)
contains
in interface java.util.Collection
public boolean containsAll(java.util.Collection c)
containsAll
in interface java.util.Collection
public boolean containsAll(RectListManager rlm)
public boolean remove(java.lang.Object o)
remove
in interface java.util.Collection
o
- Object to remove an matching instance of.public boolean remove(java.awt.Rectangle rect)
rect
- Rectangle to remove an matching instance of.public boolean removeAll(java.util.Collection c)
removeAll
in interface java.util.Collection
public boolean removeAll(RectListManager rlm)
public boolean retainAll(java.util.Collection c)
retainAll
in interface java.util.Collection
public boolean retainAll(RectListManager rlm)
public void add(RectListManager rlm)
rlm
- The RectListManager to add the contents of.public void mergeRects(int overhead, int lineOverhead)
public void subtract(RectListManager rlm, int overhead, int lineOverhead)
protected void insertRects(java.awt.Rectangle[] rects, int srcPos, int dstPos, int len)
public void ensureCapacity(int sz)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |