Package org.jgraph.graph
Class DefaultGraphSelectionModel.CellPlaceHolder
- java.lang.Object
-
- org.jgraph.graph.DefaultGraphSelectionModel.CellPlaceHolder
-
- Enclosing class:
- DefaultGraphSelectionModel
protected class DefaultGraphSelectionModel.CellPlaceHolder extends java.lang.ObjectHolds a path and whether or not it is new.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedCellPlaceHolder(java.lang.Object cell, boolean isNew)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetCell()Returns the cell.booleanisNew()Returns the isNew.voidsetCell(java.lang.Object cell)Sets the cell.voidsetNew(boolean isNew)Sets the isNew.
-
-
-
Method Detail
-
getCell
public java.lang.Object getCell()
Returns the cell.- Returns:
- Object
-
isNew
public boolean isNew()
Returns the isNew.- Returns:
- boolean
-
setCell
public void setCell(java.lang.Object cell)
Sets the cell.- Parameters:
cell- The cell to set
-
setNew
public void setNew(boolean isNew)
Sets the isNew.- Parameters:
isNew- The isNew to set
-
-