Interface Cell


public interface Cell
Represents a cell on the cell stack.
  • Method Details

    • 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. use paths() 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. use searchPaths() 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 or null if this cell is the top most.
      Returns:
      parent cell or null