1 module org.eclipse.swt.internal.mozilla.nsIDOMAttr;
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.nsIDOMNode;
8 import org.eclipse.swt.internal.mozilla.nsIDOMElement;
9 import org.eclipse.swt.internal.mozilla.nsStringAPI;
10 
11 const char[] NS_IDOMATTR_IID_STR = "a6cf9070-15b3-11d2-932e-00805f8add32";
12 
13 const nsIID NS_IDOMATTR_IID= 
14   {0xa6cf9070, 0x15b3, 0x11d2, 
15     [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]};
16 
17 interface nsIDOMAttr : nsIDOMNode {
18 
19   static const char[] IID_STR = NS_IDOMATTR_IID_STR;
20   static const nsIID IID = NS_IDOMATTR_IID;
21 
22 extern(System):
23   nsresult GetName(nsAString * aName);
24   nsresult GetSpecified(PRBool *aSpecified);
25   nsresult GetValue(nsAString * aValue);
26   nsresult SetValue(nsAString * aValue);
27   nsresult GetOwnerElement(nsIDOMElement  *aOwnerElement);
28 
29 }
30