Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


LocatorImplorg.xml.sax.helpers

Java 1.4

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.


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


    / 1191