nsIDOMDocumentType.h
上传用户:goldcmy89
上传日期:2017-12-03
资源大小:2246k
文件大小:6k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM c:/builds/tinderbox/XR-Mozilla1.8.0-Release/WINNT_5.2_Depend/mozilla/dom/public/idl/core/nsIDOMDocumentType.idl
  3.  */
  4. #ifndef __gen_nsIDOMDocumentType_h__
  5. #define __gen_nsIDOMDocumentType_h__
  6. #ifndef __gen_nsIDOMNode_h__
  7. #include "nsIDOMNode.h"
  8. #endif
  9. /* For IDL files that don't want to include root IDL files. */
  10. #ifndef NS_NO_VTABLE
  11. #define NS_NO_VTABLE
  12. #endif
  13. /* starting interface:    nsIDOMDocumentType */
  14. #define NS_IDOMDOCUMENTTYPE_IID_STR "a6cf9077-15b3-11d2-932e-00805f8add32"
  15. #define NS_IDOMDOCUMENTTYPE_IID 
  16.   {0xa6cf9077, 0x15b3, 0x11d2, 
  17.     { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
  18. class NS_NO_VTABLE nsIDOMDocumentType : public nsIDOMNode {
  19.  public: 
  20.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMDOCUMENTTYPE_IID)
  21.   /**
  22.  * Each Document has a doctype attribute whose value is either null 
  23.  * or a DocumentType object. 
  24.  * The nsIDOMDocumentType interface in the DOM Core provides an 
  25.  * interface to the list of entities that are defined for the document.
  26.  *
  27.  * For more information on this interface please see 
  28.  * http://www.w3.org/TR/DOM-Level-2-Core/
  29.  *
  30.  * @status FROZEN
  31.  */
  32.   /* readonly attribute DOMString name; */
  33.   NS_IMETHOD GetName(nsAString & aName) = 0;
  34.   /* readonly attribute nsIDOMNamedNodeMap entities; */
  35.   NS_IMETHOD GetEntities(nsIDOMNamedNodeMap * *aEntities) = 0;
  36.   /* readonly attribute nsIDOMNamedNodeMap notations; */
  37.   NS_IMETHOD GetNotations(nsIDOMNamedNodeMap * *aNotations) = 0;
  38.   /* readonly attribute DOMString publicId; */
  39.   NS_IMETHOD GetPublicId(nsAString & aPublicId) = 0;
  40.   /* readonly attribute DOMString systemId; */
  41.   NS_IMETHOD GetSystemId(nsAString & aSystemId) = 0;
  42.   /* readonly attribute DOMString internalSubset; */
  43.   NS_IMETHOD GetInternalSubset(nsAString & aInternalSubset) = 0;
  44. };
  45. /* Use this macro when declaring classes that implement this interface. */
  46. #define NS_DECL_NSIDOMDOCUMENTTYPE 
  47.   NS_IMETHOD GetName(nsAString & aName); 
  48.   NS_IMETHOD GetEntities(nsIDOMNamedNodeMap * *aEntities); 
  49.   NS_IMETHOD GetNotations(nsIDOMNamedNodeMap * *aNotations); 
  50.   NS_IMETHOD GetPublicId(nsAString & aPublicId); 
  51.   NS_IMETHOD GetSystemId(nsAString & aSystemId); 
  52.   NS_IMETHOD GetInternalSubset(nsAString & aInternalSubset); 
  53. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  54. #define NS_FORWARD_NSIDOMDOCUMENTTYPE(_to) 
  55.   NS_IMETHOD GetName(nsAString & aName) { return _to GetName(aName); } 
  56.   NS_IMETHOD GetEntities(nsIDOMNamedNodeMap * *aEntities) { return _to GetEntities(aEntities); } 
  57.   NS_IMETHOD GetNotations(nsIDOMNamedNodeMap * *aNotations) { return _to GetNotations(aNotations); } 
  58.   NS_IMETHOD GetPublicId(nsAString & aPublicId) { return _to GetPublicId(aPublicId); } 
  59.   NS_IMETHOD GetSystemId(nsAString & aSystemId) { return _to GetSystemId(aSystemId); } 
  60.   NS_IMETHOD GetInternalSubset(nsAString & aInternalSubset) { return _to GetInternalSubset(aInternalSubset); } 
  61. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  62. #define NS_FORWARD_SAFE_NSIDOMDOCUMENTTYPE(_to) 
  63.   NS_IMETHOD GetName(nsAString & aName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } 
  64.   NS_IMETHOD GetEntities(nsIDOMNamedNodeMap * *aEntities) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEntities(aEntities); } 
  65.   NS_IMETHOD GetNotations(nsIDOMNamedNodeMap * *aNotations) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNotations(aNotations); } 
  66.   NS_IMETHOD GetPublicId(nsAString & aPublicId) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPublicId(aPublicId); } 
  67.   NS_IMETHOD GetSystemId(nsAString & aSystemId) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSystemId(aSystemId); } 
  68.   NS_IMETHOD GetInternalSubset(nsAString & aInternalSubset) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetInternalSubset(aInternalSubset); } 
  69. #if 0
  70. /* Use the code below as a template for the implementation class for this interface. */
  71. /* Header file */
  72. class nsDOMDocumentType : public nsIDOMDocumentType
  73. {
  74. public:
  75.   NS_DECL_ISUPPORTS
  76.   NS_DECL_NSIDOMDOCUMENTTYPE
  77.   nsDOMDocumentType();
  78. private:
  79.   ~nsDOMDocumentType();
  80. protected:
  81.   /* additional members */
  82. };
  83. /* Implementation file */
  84. NS_IMPL_ISUPPORTS1(nsDOMDocumentType, nsIDOMDocumentType)
  85. nsDOMDocumentType::nsDOMDocumentType()
  86. {
  87.   /* member initializers and constructor code */
  88. }
  89. nsDOMDocumentType::~nsDOMDocumentType()
  90. {
  91.   /* destructor code */
  92. }
  93. /* readonly attribute DOMString name; */
  94. NS_IMETHODIMP nsDOMDocumentType::GetName(nsAString & aName)
  95. {
  96.     return NS_ERROR_NOT_IMPLEMENTED;
  97. }
  98. /* readonly attribute nsIDOMNamedNodeMap entities; */
  99. NS_IMETHODIMP nsDOMDocumentType::GetEntities(nsIDOMNamedNodeMap * *aEntities)
  100. {
  101.     return NS_ERROR_NOT_IMPLEMENTED;
  102. }
  103. /* readonly attribute nsIDOMNamedNodeMap notations; */
  104. NS_IMETHODIMP nsDOMDocumentType::GetNotations(nsIDOMNamedNodeMap * *aNotations)
  105. {
  106.     return NS_ERROR_NOT_IMPLEMENTED;
  107. }
  108. /* readonly attribute DOMString publicId; */
  109. NS_IMETHODIMP nsDOMDocumentType::GetPublicId(nsAString & aPublicId)
  110. {
  111.     return NS_ERROR_NOT_IMPLEMENTED;
  112. }
  113. /* readonly attribute DOMString systemId; */
  114. NS_IMETHODIMP nsDOMDocumentType::GetSystemId(nsAString & aSystemId)
  115. {
  116.     return NS_ERROR_NOT_IMPLEMENTED;
  117. }
  118. /* readonly attribute DOMString internalSubset; */
  119. NS_IMETHODIMP nsDOMDocumentType::GetInternalSubset(nsAString & aInternalSubset)
  120. {
  121.     return NS_ERROR_NOT_IMPLEMENTED;
  122. }
  123. /* End of implementation class template. */
  124. #endif
  125. #endif /* __gen_nsIDOMDocumentType_h__ */