1 module org.eclipse.swt.internal.mozilla.nsIDOMNodeList;
2 
3 import java.lang.all;
4 
5 import org.eclipse.swt.internal.mozilla.Common;
6 import org.eclipse.swt.internal.mozilla.nsID;
7 import org.eclipse.swt.internal.mozilla.nsISupports;
8 
9 import org.eclipse.swt.internal.mozilla.nsIDOMNode;
10 
11 alias PRUint64 DOMTimeStamp;
12 
13 const char[] NS_IDOMNODELIST_IID_STR = "a6cf907d-15b3-11d2-932e-00805f8add32";
14 
15 const nsIID NS_IDOMNODELIST_IID= 
16   {0xa6cf907d, 0x15b3, 0x11d2, 
17     [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]};
18 
19 //extern(System)
20 
21 interface nsIDOMNodeList : nsISupports {
22 
23   static const char[] IID_STR = NS_IDOMNODELIST_IID_STR;
24   static const nsIID IID = NS_IDOMNODELIST_IID;
25 
26 extern(System):
27   nsresult Item(PRUint32 index, nsIDOMNode *_retval);
28   nsresult GetLength(PRUint32 *aLength);
29 
30 }
31