summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLCollection.java
blob: a5eecbee73c3156c95e2d9edd808b3505df46d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;

/**

 An <code>HTMLCollection</code> is a list of nodes. An individual
 node may be accessed by either ordinal index or the node's
 <code>name</code> or <code>id</code> 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 <code>HTMLCollection</code> 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 <code>Node</code> at the corresponding position
 upon success. A value of <code>null</code> 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 <code>Node</code> using a name. It
		 first searches for a <code>Node</code> with a matching
		 <code>id</code> attribute. If it doesn't find one, it then searches
		 for a <code>Node</code> with a matching <code>name</code>
		 attribute, but only on those elements that are allowed a name
		 attribute.
			@param name The name of the <code>Node</code> to be fetched.
			     		@return The <code>Node</code> with a <code>name</code> or
 <code>id</code> attribute whose value corresponds to the
 specified string. Upon failure (e.g., no node with this name
 exists), returns <code>null</code> .

		@short    This method retrieves a <code>Node</code> 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
}