Interface NodeContext
-
- All Known Implementing Classes:
NodeContextImpl
public interface NodeContext
Meta information about a node:- jcr path
- file path of the file which defined the node
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull Path
getBasePath()
@NotNull Path
getFilePath()
@NotNull String
getNodePath()
-
-
-
Method Detail
-
getNodePath
@NotNull @NotNull String getNodePath()
- Returns:
- the JCR node path
-
getFilePath
@NotNull @NotNull Path getFilePath()
- Returns:
- the file path relative to jcr_root
-
getBasePath
@NotNull @NotNull Path getBasePath()
- Returns:
- the absolute file path of jcr_root (base for
getFilePath()
)
-
-