Uses of Interface
com.opensymphony.xwork.util.location.Location

Packages that use Location
com.opensymphony.xwork   
com.opensymphony.xwork.config.providers   
com.opensymphony.xwork.util   
com.opensymphony.xwork.util.location Classes and utilities used to track location information. 
 

Uses of Location in com.opensymphony.xwork
 

Methods in com.opensymphony.xwork that return Location
 Location XworkException.getLocation()
          Gets the location of the error, if available
 

Uses of Location in com.opensymphony.xwork.config.providers
 

Methods in com.opensymphony.xwork.config.providers with parameters of type Location
protected  boolean XmlConfigurationProvider.verifyAction(String className, String name, Location loc)
           
protected  Class XmlConfigurationProvider.verifyResultType(String className, Location loc)
           
 

Uses of Location in com.opensymphony.xwork.util
 

Methods in com.opensymphony.xwork.util that return Location
static Location DomHelper.getLocationObject(Element element)
           
 

Uses of Location in com.opensymphony.xwork.util.location
 

Classes in com.opensymphony.xwork.util.location that implement Location
 class LocationImpl
          A simple immutable and serializable implementation of Location.
 

Fields in com.opensymphony.xwork.util.location declared as Location
static Location Location.UNKNOWN
          Constant for unknown locations.
protected  Location Located.location
           
 

Methods in com.opensymphony.xwork.util.location that return Location
static Location LocationUtils.getLocation(Object obj)
          Get the location of an object.
static Location LocationUtils.getLocation(Object obj, String description)
          Get the location of an object.
 Location LocationUtils.LocationFinder.getLocation(Object obj, String description)
          Get the location of an object
static Location LocationAttributes.getLocation(Attributes attrs, String description)
          Returns the Location of an element (SAX flavor).
static Location LocationAttributes.getLocation(Element elem, String description)
          Returns the Location of an element (DOM flavor).
static Location LocationAttributes.getLocation(Element elem)
          Same as getLocation(elem, null).
 Location Locatable.getLocation()
          Get the location of this object
 Location Located.getLocation()
          Get the location of this object
 

Methods in com.opensymphony.xwork.util.location with parameters of type Location
static String LocationUtils.toString(Location location)
          Builds a string representation of a location, in the "descripton - uri:line:column" format (e.g.
static boolean LocationUtils.isKnown(Location location)
          Checks if a location is known, i.e.
static boolean LocationUtils.isUnknown(Location location)
          Checks if a location is unknown, i.e.
 void Located.setLocation(Location loc)
          Set the location of this object
static LocationImpl LocationImpl.get(Location location)
          Obtain a LocationImpl from a Location.
 

Constructors in com.opensymphony.xwork.util.location with parameters of type Location
LocationImpl(Location location)
          Copy constructor.
LocationImpl(String description, Location location)
          Create a location from an existing one, but with a different description
 


XWork Project Page