//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.QtSupport; /** An HTMLCollection is a list of nodes. An individual node may be accessed by either ordinal index or the node's name or id attributes. Note: Collections in the HTML DOM are assumed to be live meaning that they are automatically updated when the underlying document is changed. @short An HTMLCollection is a list of nodes. */ public class HTMLCollection implements QtSupport { private long _qt; private boolean _allocatedInJavaWorld = true; protected HTMLCollection(Class dummy){} public HTMLCollection() { newHTMLCollection(); } private native void newHTMLCollection(); public HTMLCollection(HTMLCollection other) { newHTMLCollection(other); } private native void newHTMLCollection(HTMLCollection other); /** This attribute specifies the length or size of the list. @short This attribute specifies the length or size of the list. */ public native long length(); /** This method retrieves a node specified by ordinal index. Nodes are numbered in tree order (depth-first traversal order). @param index The index of the node to be fetched. The index origin is 0. @return The Node at the corresponding position upon success. A value of null is returned if the index is out of range. @short This method retrieves a node specified by ordinal index. */ public native Node item(long index); /** This method retrieves a Node using a name. It first searches for a Node with a matching id attribute. If it doesn't find one, it then searches for a Node with a matching name attribute, but only on those elements that are allowed a name attribute. @param name The name of the Node to be fetched. @return The Node with a name or id attribute whose value corresponds to the specified string. Upon failure (e.g., no node with this name exists), returns null . @short This method retrieves a Node using a name. */ public native Node namedItem(String name); /** not part of the DOM @short */ public native Node base(); // DOM::HTMLCollectionImpl* handle(); >>>> NOT CONVERTED public native boolean isNull(); public native Node firstItem(); public native Node nextItem(); public native Node nextNamedItem(String name); // DOM::HTMLCollection* HTMLCollection(DOM::NodeImpl* arg1,int arg2); >>>> NOT CONVERTED }