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 java.lang.StringgetName()Returns the primary name of this celljava.lang.String[]getNames()Returns the names of this cellCellgetParent()Returns the parent cell of the cell stack ornullif this cell is the top most.java.lang.StringgetPath()Returns the primary path of this cell.java.lang.String[]getPaths()Deprecated.since 5.4.java.lang.StringgetSearchPath()Returns an expression for the search path.java.lang.String[]getSearchPaths()Deprecated.since 5.4.java.util.Iterator<java.lang.String>paths()Returns an iterator over all cell paths.java.util.Iterator<java.lang.String>searchPaths()Returns an iterator over the style search paths.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the primary name of this cell- Returns:
- the primary name of this cell
-
getNames
java.lang.String[] getNames()
Returns the names of this cell- Returns:
- the names of this cell
-
getPaths
java.lang.String[] getPaths()
Deprecated.since 5.4. usepaths()instead.Returns the paths of this cell- Returns:
- the paths of this cell.
-
paths
java.util.Iterator<java.lang.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
java.lang.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
java.lang.String[] getSearchPaths()
Deprecated.since 5.4. usesearchPaths()instead.Returns the search paths.- Returns:
- the search paths.
-
searchPaths
java.util.Iterator<java.lang.String> searchPaths()
Returns an iterator over the style search paths.- Returns:
- the style search paths.
- Since:
- 5.4
-
getSearchPath
java.lang.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
-
-