Package freemarker.debug
Class Breakpoint
- java.lang.Object
-
- freemarker.debug.Breakpoint
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable
public class Breakpoint extends java.lang.Object implements java.io.Serializable, java.lang.Comparable
Represents a breakpoint location consisting of a template name and a line number.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Breakpoint(java.lang.String templateName, int line)
Creates a new breakpoint.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(java.lang.Object o)
boolean
equals(java.lang.Object o)
int
getLine()
Returns the line number of the breakpointjava.lang.String
getLocationString()
Returns the template name and the line number separated with a colonjava.lang.String
getTemplateName()
Returns the template name of the breakpointint
hashCode()
-
-
-
Method Detail
-
getLine
public int getLine()
Returns the line number of the breakpoint
-
getTemplateName
public java.lang.String getTemplateName()
Returns the template name of the breakpoint
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
compareTo
public int compareTo(java.lang.Object o)
- Specified by:
compareTo
in interfacejava.lang.Comparable
-
getLocationString
public java.lang.String getLocationString()
Returns the template name and the line number separated with a colon
-
-