comparison dwt/internal/mozilla/nsIDOMDocumentType.d @ 272:dd63eb078d7a

xpcom interfaces necessary for browser code -- source adapted from dxpcom project; these modules still need to be tested and then integrated into dwt browser.
author John Reimer<terminal.node@gmail.com>
date Fri, 18 Jul 2008 05:32:53 -0700
parents
children 942da4b6558a
comparison
equal deleted inserted replaced
271:d472fae79005 272:dd63eb078d7a
1 module dwt.internal.mozilla.nsIDOMDocumentType;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5
6 import dwt.internal.mozilla.nsIDOMNode;
7 import dwt.internal.mozilla.nsIDOMNamedNodeMap;
8 import dwt.internal.mozilla.nsStringAPI;
9
10 const char[] NS_IDOMDOCUMENTTYPE_IID_STR = "a6cf9077-15b3-11d2-932e-00805f8add32";
11
12 const nsIID NS_IDOMDOCUMENTTYPE_IID=
13 {0xa6cf9077, 0x15b3, 0x11d2,
14 [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]};
15
16 extern(System)
17
18 interface nsIDOMDocumentType : nsIDOMNode {
19
20 static const char[] IID_STR = NS_IDOMDOCUMENTTYPE_IID_STR;
21 static const nsIID IID = NS_IDOMDOCUMENTTYPE_IID;
22
23 nsresult GetName(nsAString * aName);
24 nsresult GetEntities(nsIDOMNamedNodeMap *aEntities);
25 nsresult GetNotations(nsIDOMNamedNodeMap *aNotations);
26 nsresult GetPublicId(nsAString * aPublicId);
27 nsresult GetSystemId(nsAString * aSystemId);
28 nsresult GetInternalSubset(nsAString * aInternalSubset);
29
30 }
31