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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


Attributes2org.xml.sax.ext

Java 5.0

This interface
extends org.xml.sax.Attributes and adds methods
for determining if an attribute was declared in the DTD and whether
an attribute value was explicitly specified in the document or
whether a default value from the DTD was used. If the SAX
implementation supports this interface, the
Attributes object passed to the
startElement( ) method of the
ContentHandler implements this interface. You can
also test for support by querying the feature named
"http://xml.org/sax/features/use-attributes2"
with XMLReader.getFeature( ).


Figure 22-7. org.xml.sax.ext.Attributes2

public interface

Attributes2 extends org.xml.sax.Attributes {
// Public Instance Methods
boolean

isDeclared (String

qName );
boolean

isDeclared (int

index );
boolean

isDeclared (String

uri , String

localName );
boolean

isSpecified (String

qName );
boolean

isSpecified (int

index );
boolean

isSpecified (String

uri , String

localName );
}


Implementations


Attributes2Impl


    / 1191