Chart FX 7 for Java Server

com.softwarefx.chartfx.server
Class CellAttributesCollection

java.lang.Object
  extended by com.softwarefx.chartfx.server.CellAttributesCollection
All Implemented Interfaces:
Iterable<CellAttributes>, Collection<CellAttributes>

public class CellAttributesCollection
extends Object
implements Iterable<CellAttributes>, Collection<CellAttributes>

Provides access to the CellAttributesCollection object.

Charts may have several CellAttributes objects. The CellAttributesCollection is a collection of all the CellAttributes items for a chart.


Constructor Summary
CellAttributesCollection()
           
 
Method Summary
 boolean add(CellAttributes o)
          Appends the specified element to the CellAttributesCollection collection.
 boolean addAll(Collection<? extends CellAttributes> c)
          Adds all of the elements in the specified collection to the CellAttributesCollection collection.
 void clear()
          Removes all of the elements from this collection.
 boolean contains(Object o)
          Returns true if the CellAttributesCollection contains the specified element.
 boolean containsAll(Collection<?> c)
          Returns true if the CellAttributesCollection collection contains all of the elements in the specified collection.
 void copyTo(CellAttributes[] items, int index)
          Copies the entire Collection to a compatible one-dimensional Array, starting at the specified index of the target array.
 CellAttributes get(int row)
          Returns the element at the specified position in the CellAttributesCollection.
 CellAttributes get(int row, int column)
          Returns the element at the specified position in the CellAttributesCollection.
 boolean isEmpty()
          Returns true if this collection contains no elements.
 Iterator<CellAttributes> iterator()
          Returns an iterator over the elements in this collection.
 boolean remove(Object o)
          Removes the specified element from the CellAttributesCollection collection.
 boolean removeAll(Collection<?> c)
          Removes all of the elements in the specified collection from the CellAttributesCollection collection.
 boolean retainAll(Collection<?> c)
          Retains only the elements in the CellAttributesCollection collection that are contained in the specified collection.
 void set(int row, CellAttributes value)
          Replaces the element at the specified position in the CellAttributesCollection collection with the specified element.
 void set(int row, int column, CellAttributes value)
          Replaces the element at the specified position in the CellAttributesCollection collection with the specified element.
 int size()
          Returns the number of elements in this collection.
 Object[] toArray()
          Returns an array containing all of the elements in this collection in proper sequence.
<T> T[]
toArray(T[] a)
          Returns an array containing all of the elements in this collection in proper sequence.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Collection
equals, hashCode
 

Constructor Detail

CellAttributesCollection

public CellAttributesCollection()
Method Detail

add

public boolean add(CellAttributes o)

Appends the specified element to the CellAttributesCollection collection.

Specified by:
add in interface Collection<CellAttributes>
Parameters:
o - The item to add to the CellAttributesCollection collection.

addAll

public boolean addAll(Collection<? extends CellAttributes> c)

Adds all of the elements in the specified collection to the CellAttributesCollection collection.

Specified by:
addAll in interface Collection<CellAttributes>
Parameters:
c - Elements to be inserted into this collection.

clear

public void clear()

Removes all of the elements from this collection.

Specified by:
clear in interface Collection<CellAttributes>

contains

public boolean contains(Object o)

Returns true if the CellAttributesCollection contains the specified element.

Specified by:
contains in interface Collection<CellAttributes>
Parameters:
o - Element whose presence in this collection is to be tested.

containsAll

public boolean containsAll(Collection<?> c)

Returns true if the CellAttributesCollection collection contains all of the elements in the specified collection.

Specified by:
containsAll in interface Collection<CellAttributes>
Parameters:
c - Collection to be checked for containment in this collection.

copyTo

public void copyTo(CellAttributes[] items,
                   int index)

Copies the entire Collection to a compatible one-dimensional Array, starting at the specified index of the target array.

Parameters:
items - The one-dimensional Array that is the destination of the elements copied from CellAttributesCollection. The Array must have zero-based indexing.
index - The zero-based index in array at which copying begins.

get

public CellAttributes get(int row)

Returns the element at the specified position in the CellAttributesCollection.

Parameters:
row - Index of element to return.

get

public CellAttributes get(int row,
                          int column)

Returns the element at the specified position in the CellAttributesCollection.

Parameters:
row - Index of element to return.
column - Index of the column to return.

isEmpty

public boolean isEmpty()

Returns true if this collection contains no elements.

Specified by:
isEmpty in interface Collection<CellAttributes>

iterator

public Iterator<CellAttributes> iterator()

Returns an iterator over the elements in this collection.

Specified by:
iterator in interface Iterable<CellAttributes>
Specified by:
iterator in interface Collection<CellAttributes>

remove

public boolean remove(Object o)

Removes the specified element from the CellAttributesCollection collection.

Specified by:
remove in interface Collection<CellAttributes>
Parameters:
o - The item to remove from the CellAttributesCollection collection.

removeAll

public boolean removeAll(Collection<?> c)

Removes all of the elements in the specified collection from the CellAttributesCollection collection.

Specified by:
removeAll in interface Collection<CellAttributes>
Parameters:
c - Elements to be removed from this collection.

retainAll

public boolean retainAll(Collection<?> c)

Retains only the elements in the CellAttributesCollection collection that are contained in the specified collection.

Specified by:
retainAll in interface Collection<CellAttributes>
Parameters:
c - Elements to be retained in this collection.

set

public void set(int row,
                CellAttributes value)

Replaces the element at the specified position in the CellAttributesCollection collection with the specified element.

Parameters:
row - The index of the row to add to the CellAttributesCollection collection.
value - The item to add to the CellAttributesCollection collection

set

public void set(int row,
                int column,
                CellAttributes value)

Replaces the element at the specified position in the CellAttributesCollection collection with the specified element.

Parameters:
row - The index of the row to add to the CellAttributesCollection collection.
column - The index of the column to add to the CellAttributesCollection collection.
value - The item to add to the CellAttributesCollection collection

size

public int size()

Returns the number of elements in this collection.

Specified by:
size in interface Collection<CellAttributes>

toArray

public Object[] toArray()

Returns an array containing all of the elements in this collection in proper sequence.

Specified by:
toArray in interface Collection<CellAttributes>

toArray

public <T> T[] toArray(T[] a)

Returns an array containing all of the elements in this collection in proper sequence.

Specified by:
toArray in interface Collection<CellAttributes>

http://www.softwarefx.com

2008 Software FX, Inc. All Rights Reserved. Chart FX is a registered trademark of Software FX, Inc
All other names are trademarks or registered trademarks of their respective owners.