Class Renderer.Target
- java.lang.Object
-
- com.priint.pubserver.comet.renderer.Renderer.Target
-
- Direct Known Subclasses:
Renderer.DocumentTarget
- Enclosing class:
- Renderer
public static class Renderer.Target extends java.lang.ObjectThe Class Target.
-
-
Field Summary
Fields Modifier and Type Field Description protected intparentThe parent.protected Renderer.ScopescopeThe scope.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Renderer.DocumentTargetdocument(java.lang.String documentId, java.io.File documentFile)Creates a newDocumentTargetdenoted by documentId and file.intgetParent()Gets the parent.Renderer.ScopegetScope()Gets the scope.static Renderer.Targetglobal()Creates a new globalTarget
-
-
-
Field Detail
-
scope
protected Renderer.Scope scope
The scope.
-
parent
protected int parent
The parent.
-
-
Method Detail
-
document
public static final Renderer.DocumentTarget document(java.lang.String documentId, java.io.File documentFile)
Creates a new
DocumentTargetdenoted by documentId and file.- Parameters:
documentId- the ID of this documentdocumentFile- the physical document file- Returns:
- new DocumentTarget object
-
global
public static final Renderer.Target global()
Creates a new global
.Target- Returns:
- new Target object
-
getScope
public Renderer.Scope getScope()
Gets the scope.- Returns:
- the scope
-
getParent
public int getParent()
Gets the parent.- Returns:
- the parent
-
-