Class Break
- java.lang.Object
-
- net.sourceforge.pmd.lang.vm.directive.Directive
-
- net.sourceforge.pmd.lang.vm.directive.Break
-
- All Implemented Interfaces:
java.lang.Cloneable
public class Break extends Directive
Break directive used for interrupting scopes.- Version:
- $Id$
- Author:
- Jarkko Viinamaki, Nathan Bubna
-
-
Constructor Summary
Constructors Constructor Description Break()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Return name of this directive.intgetType()Return type of this directive.booleanisScopeProvided()Since there is no processing of content, there is never a need for an internal scope.-
Methods inherited from class net.sourceforge.pmd.lang.vm.directive.Directive
getColumn, getLine, getScopeName, getTemplateName, setLocation, setLocation
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Return name of this directive.
-
getType
public int getType()
Return type of this directive.
-
isScopeProvided
public boolean isScopeProvided()
Since there is no processing of content, there is never a need for an internal scope.- Overrides:
isScopeProvidedin classDirective- Returns:
- true if there will be a scope control injected into the context when rendering this directive.
-
-