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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


NameListorg.w3c.dom

Java 5.0

This Level 3 interface represnts a
fixed-size, read-only
list of element or attribute names
and their namespace URI. getLength( ) returns the
length of the list. getName( ) and
getNamespaceURI( ) return the name and namespace
at the specified index. contains( ) and
containsNS( ) test for membership in the list.

This interface is unused within the org.w3c.dom
package.

public interface

NameList {
// Public Instance Methods
boolean

contains (String

str );
boolean

containsNS (String

namespaceURI , String

name );
int

getLength ( );
String

getName (int

index );
String

getNamespaceURI (int

index );
}



    / 1191