/gecko_api/include/nsIDOMHTMLBRElement.h
C Header | 108 lines | 56 code | 26 blank | 26 comment | 0 complexity | d548fed2de16aa5030488edbe1062be0 MD5 | raw file
1/* 2 * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/tinderbox/XR-Trunk/Darwin_8.8.4_Depend/mozilla/dom/public/idl/html/nsIDOMHTMLBRElement.idl 3 */ 4 5#ifndef __gen_nsIDOMHTMLBRElement_h__ 6#define __gen_nsIDOMHTMLBRElement_h__ 7 8 9#ifndef __gen_nsIDOMHTMLElement_h__ 10#include "nsIDOMHTMLElement.h" 11#endif 12 13/* For IDL files that don't want to include root IDL files. */ 14#ifndef NS_NO_VTABLE 15#define NS_NO_VTABLE 16#endif 17 18/* starting interface: nsIDOMHTMLBRElement */ 19#define NS_IDOMHTMLBRELEMENT_IID_STR "a6cf90a5-15b3-11d2-932e-00805f8add32" 20 21#define NS_IDOMHTMLBRELEMENT_IID \ 22 {0xa6cf90a5, 0x15b3, 0x11d2, \ 23 { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }} 24 25/** 26 * The nsIDOMHTMLBRElement interface is the interface to a [X]HTML br 27 * element. 28 * 29 * For more information on this interface please see 30 * http://www.w3.org/TR/DOM-Level-2-HTML/ 31 * 32 * @status FROZEN 33 */ 34class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMHTMLBRElement : public nsIDOMHTMLElement { 35 public: 36 37 NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLBRELEMENT_IID) 38 39 /* attribute DOMString clear; */ 40 NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear) = 0; 41 NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear) = 0; 42 43}; 44 45 NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLBRElement, NS_IDOMHTMLBRELEMENT_IID) 46 47/* Use this macro when declaring classes that implement this interface. */ 48#define NS_DECL_NSIDOMHTMLBRELEMENT \ 49 NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear); \ 50 NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear); 51 52/* Use this macro to declare functions that forward the behavior of this interface to another object. */ 53#define NS_FORWARD_NSIDOMHTMLBRELEMENT(_to) \ 54 NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear) { return _to GetClear(aClear); } \ 55 NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear) { return _to SetClear(aClear); } 56 57/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ 58#define NS_FORWARD_SAFE_NSIDOMHTMLBRELEMENT(_to) \ 59 NS_SCRIPTABLE NS_IMETHOD GetClear(nsAString & aClear) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetClear(aClear); } \ 60 NS_SCRIPTABLE NS_IMETHOD SetClear(const nsAString & aClear) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetClear(aClear); } 61 62#if 0 63/* Use the code below as a template for the implementation class for this interface. */ 64 65/* Header file */ 66class nsDOMHTMLBRElement : public nsIDOMHTMLBRElement 67{ 68public: 69 NS_DECL_ISUPPORTS 70 NS_DECL_NSIDOMHTMLBRELEMENT 71 72 nsDOMHTMLBRElement(); 73 74private: 75 ~nsDOMHTMLBRElement(); 76 77protected: 78 /* additional members */ 79}; 80 81/* Implementation file */ 82NS_IMPL_ISUPPORTS1(nsDOMHTMLBRElement, nsIDOMHTMLBRElement) 83 84nsDOMHTMLBRElement::nsDOMHTMLBRElement() 85{ 86 /* member initializers and constructor code */ 87} 88 89nsDOMHTMLBRElement::~nsDOMHTMLBRElement() 90{ 91 /* destructor code */ 92} 93 94/* attribute DOMString clear; */ 95NS_IMETHODIMP nsDOMHTMLBRElement::GetClear(nsAString & aClear) 96{ 97 return NS_ERROR_NOT_IMPLEMENTED; 98} 99NS_IMETHODIMP nsDOMHTMLBRElement::SetClear(const nsAString & aClear) 100{ 101 return NS_ERROR_NOT_IMPLEMENTED; 102} 103 104/* End of implementation class template. */ 105#endif 106 107 108#endif /* __gen_nsIDOMHTMLBRElement_h__ */