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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


EntityResolver2org.xml.sax.ext

Java 5.0

This extension
interface provides alternative entity resolver methods. If you
register an entity resolver that implements this interface, if the
SAX implementation supports this interface, and you set the feature
"http://xml.org/sax/features/use-entity-resolver2"
to true, then the implementation will use the
methods defined by this interface instead of the method defined by
the super-interface.


Figure 22-10. org.xml.sax.ext.EntityResolver2

public interface

EntityResolver2 extends org.xml.sax.EntityResolver {
// Public Instance Methods
org.xml.sax.InputSource

getExternalSubset (String

name , String

baseURI )
throws org.xml.sax.SAXException, java.io.IOException;
org.xml.sax.InputSource

resolveEntity (String

name , String

publicId ,
String

baseURI , String

systemId )
throws org.xml.sax.SAXException, java.io.IOException;
}


Implementations


DefaultHandler2


    / 1191