public class Group extends java.lang.Object implements CellGroupReference
修飾子とタイプ | メソッドと説明 |
---|---|
Group |
addCell(Cell cell)
グループにセルを追加します。
|
Group |
addCell(java.lang.String cellName)
セル名を指定してグループにセルを追加します。
|
Group |
addCells(java.util.Collection<Cell> cells)
グループにセルを追加します。
|
Group |
addCells(java.lang.String[] cellNames)
セル名を指定してグループにセルを追加します。
|
java.util.Collection<Cell> |
getCells()
このグループが持つセルのコレクションを返します
|
java.lang.String |
getFullyQualifiedName()
このグループの完全修飾名を返します
|
java.lang.String |
getName()
このグループの名前を返します
|
Group |
removeCell(Cell cell)
グループからセルを削除します
指定したセルがグループに存在しない場合は何もしません |
Group |
removeCell(java.lang.String cellName)
グループからセルを削除します
指定したセルがグループに存在しない場合は何もしません |
public java.lang.String getName()
public java.lang.String getFullyQualifiedName()
public Group addCells(java.util.Collection<Cell> cells)
cells
- 追加するセルオブジェクトを格納したCollectionpublic Group addCell(java.lang.String cellName) throws ReferenceNotFoundException
cellName
- 追加するセル名ReferenceNotFoundException
- セル名が見つからなかった場合public Group addCells(java.lang.String[] cellNames) throws ReferenceNotFoundException
cellNames
- 追加するセル名ReferenceNotFoundException
- セル名が見つからなかった場合public Group removeCell(Cell cell)
cell
- 削除するセルpublic Group removeCell(java.lang.String cellName)
cellName
- 削除するセル名ReferenceNotFoundException
- 指定したセルが存在しない場合public java.util.Collection<Cell> getCells()
CellGroupReference
getCells
インタフェース内 CellGroupReference