Interface Cell


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

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Returns the primary name of this cell
      java.lang.String[] getNames()
      Returns the names of this cell
      Cell getParent()
      Returns the parent cell of the cell stack or null if this cell is the top most.
      java.lang.String getPath()
      Returns the primary path of this cell.
      java.lang.String[] getPaths()
      Deprecated.
      since 5.4.
      java.lang.String getSearchPath()
      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. use paths() 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. use searchPaths() 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 or null if this cell is the top most.
        Returns:
        parent cell or null