Package jakarta.faces.view
Class Location
- java.lang.Object
- 
- jakarta.faces.view.Location
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class Location extends Object implements Serializable An object that represents the Location of a tag or attribute of a tag in a View Declaration Language file. - Since:
- 2.0
- See Also:
- Serialized Form
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetColumn()Return the estimated character column.intgetLine()Return the line number in the page for this location.StringgetPath()Return the file path to the page represented by this location.StringtoString()
 
- 
- 
- 
Constructor Detail- 
Locationpublic Location(String path, int line, int column) 
 
- 
 - 
Method Detail- 
getColumnpublic int getColumn() Return the estimated character column. - Returns:
- the column
 
 - 
getLinepublic int getLine() Return the line number in the page for this location. - Returns:
- the line number
 
 - 
getPathpublic String getPath() Return the file path to the page represented by this location. - Returns:
- the file path
 
 
- 
 
-