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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


TypeInfoProviderjavax.xml.validation

Java 5.0

A
TypeInfoProvider
provides information about the type of the element or attribute
currently being processed by a ValidatorHandler.
This type information is obtained by validating document content
against a schema and may be useful to the
ContentHandler to which the
ValidatorHandler dispatches its method calls.

public abstract class

TypeInfoProvider {
// Protected Constructors
protected

TypeInfoProvider ( );
// Public Instance Methods
public abstract org.w3c.dom.TypeInfo

getAttributeTypeInfo (int

index );
public abstract org.w3c.dom.TypeInfo

getElementTypeInfo ( );
public abstract boolean

isIdAttribute (int

index );
public abstract boolean

isSpecified (int

index );
}


Returned By


ValidatorHandler.getTypeInfoProvider( )


    / 1191