Package org.apache.jasper.compiler
Class Mark
- java.lang.Object
-
- org.apache.jasper.compiler.Mark
-
public final class Mark extends java.lang.Object
Mark represents a point in the JSP input.- Author:
- Anil K. Vijendran
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
int
getColumnNumber()
java.lang.String
getFile()
int
getLineNumber()
java.net.URL
getURL()
Gets the URL of the resource with which this Mark is associatedint
hashCode()
java.lang.String
toString()
-
-
-
Method Detail
-
getLineNumber
public int getLineNumber()
-
getColumnNumber
public int getColumnNumber()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getFile
public java.lang.String getFile()
-
getURL
public java.net.URL getURL() throws java.net.MalformedURLException
Gets the URL of the resource with which this Mark is associated- Returns:
- URL of the resource with which this Mark is associated
- Throws:
java.net.MalformedURLException
- if the resource pathname is incorrect
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-