Name

LocatorImpl

Synopsis

This helper class is a very simple implementation of the Locator interface. It defines a copy constructor that create a new LocatorImpl object that copies the state of a specified Locator object. This constructor is useful because it allows applications to copy the state of a Locator and save it for later use.

org.xml.sax.helpers.LocatorImpl

Figure 22-16. org.xml.sax.helpers.LocatorImpl

public class LocatorImpl implements org.xml.sax.Locator {
// Public Constructors
     public LocatorImpl( );  
     public LocatorImpl(org.xml.sax.Locator locator);  
// Public Instance Methods
     public void setColumnNumber(int columnNumber);  
     public void setLineNumber(int lineNumber);  
     public void setPublicId(String publicId);  
     public void setSystemId(String systemId);  
// Methods Implementing Locator
     public int getColumnNumber( );                                       default:0
     public int getLineNumber( );                                         default:0
     public String getPublicId( );                                        default:null
     public String getSystemId( );                                        default:null
}

Subclasses

org.xml.sax.ext.Locator2Impl

Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.