Constructor and Description |
---|
Cells() |
Modifier and Type | Method and Description |
---|---|
Cell |
add()
Add cell to collection.
|
void |
add(Cell cell)
Add cell to collection.
|
Cell |
add(String text)
Add cell to collection.
|
Cell |
add(String text,
TextState ts)
Add cell to collection.
|
void |
dispose()
Dispose method
|
Cell |
get_Item(int index)
Gets cell.
|
int |
getCount()
The items count.
|
void |
insert(int index,
Cell cell)
Insert cell to collection.
|
Iterator<Cell> |
iterator()
Gets collection's enumerator
|
void |
remove(Cell cell)
Remove cell set from collection.
|
void |
remove(Object obj)
Deprecated.
|
void |
removeRange(int index,
int count)
Remove cell set from collection.
|
void |
set_Item(int index,
Cell value)
Sets cells.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public Cell add()
Add cell to collection.
public Cell add(String text, TextState ts)
Add cell to collection.
text
- The text for cell.ts
- The text state.public Cell add(String text)
Add cell to collection.
text
- The text for cell.public void add(Cell cell)
Add cell to collection.
cell
- The cell to collection.public void removeRange(int index, int count)
Remove cell set from collection.
index
- The collection index.count
- The rows count.@Deprecated public void remove(Object obj)
Remove cell set from collection.
obj
- The object.public void remove(Cell cell)
Remove cell set from collection.
cell
- The cell object.public void insert(int index, Cell cell)
Insert cell to collection.
index
- The selected index.cell
- The selected cell.public void dispose()
Dispose method
public int getCount()
The items count.
public Cell get_Item(int index)
Gets cell.
index
- The cell index.public void set_Item(int index, Cell value)
Sets cells.
index
- The cell index.value
- The cells value