Java in a Nutshell, 5th Edition [Electronic resources]

نسخه متنی -صفحه : 1191/ 1109
نمايش فراداده

DOMImplementationListorg.w3c.dom

Java 5.0

This Level 3 interface represents a fixed-size, read-only list (or array) of DOMImplementation objects. getLength( ) returns the list length, and item( ) returns the DOMImplementation at the specified index.

public interface

DOMImplementationList { // Public Instance Methods int

getLength ( ); DOMImplementation

item (int

index ); }

Returned By

DOMImplementationSource.getDOMImplementationList( )