Package com.day.cq.wcm.api.designer
Interface Cell
-
public interface CellRepresents a cell on the cell stack.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetName()Returns the primary name of this cellString[]getNames()Returns the names of this cellCellgetParent()Returns the parent cell of the cell stack ornullif this cell is the top most.StringgetPath()Returns the primary path of this cell.String[]getPaths()Deprecated.since 5.4.StringgetSearchPath()Returns an expression for the search path.String[]getSearchPaths()Deprecated.since 5.4.Iterator<String>paths()Returns an iterator over all cell paths.Iterator<String>searchPaths()Returns an iterator over the style search paths.
-
-
-
Method Detail
-
getName
String getName()
Returns the primary name of this cell- Returns:
- the primary name of this cell
-
getNames
String[] getNames()
Returns the names of this cell- Returns:
- the names of this cell
-
getPaths
String[] getPaths()
Deprecated.since 5.4. usepaths()instead.Returns the paths of this cell- Returns:
- the paths of this cell.
-
paths
Iterator<String> paths()
Returns an iterator over all cell paths. The paths are considered relative to a design page's content.- Returns:
- an iterator over all cell paths.
- Since:
- 5.4
-
getPath
String getPath()
Returns the primary path of this cell. The path is considered relative to a design page's content.- Returns:
- the primary path.
- Since:
- 5.4
-
getSearchPaths
String[] getSearchPaths()
Deprecated.since 5.4. usesearchPaths()instead.Returns the search paths.- Returns:
- the search paths.
-
searchPaths
Iterator<String> searchPaths()
Returns an iterator over the style search paths.- Returns:
- the style search paths.
- Since:
- 5.4
-
getSearchPath
String getSearchPath()
Returns an expression for the search path.- Returns:
- search path expression
-
getParent
Cell getParent()
Returns the parent cell of the cell stack ornullif this cell is the top most.- Returns:
- parent cell or
null
-
-