LCOV - code coverage report
Current view: directory - objdir/dist/include - nsIDOMHTMLFontElement.h (source / functions) Found Hit Coverage
Test: app.info Lines: 1 0 0.0 %
Date: 2012-06-02 Functions: 1 0 0.0 %

       1                 : /*
       2                 :  * DO NOT EDIT.  THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/dom/interfaces/html/nsIDOMHTMLFontElement.idl
       3                 :  */
       4                 : 
       5                 : #ifndef __gen_nsIDOMHTMLFontElement_h__
       6                 : #define __gen_nsIDOMHTMLFontElement_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:    nsIDOMHTMLFontElement */
      19                 : #define NS_IDOMHTMLFONTELEMENT_IID_STR "1c9778ee-a49c-40ee-9b93-c0ff15630431"
      20                 : 
      21                 : #define NS_IDOMHTMLFONTELEMENT_IID \
      22                 :   {0x1c9778ee, 0xa49c, 0x40ee, \
      23                 :     { 0x9b, 0x93, 0xc0, 0xff, 0x15, 0x63, 0x04, 0x31 }}
      24                 : 
      25               0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMHTMLFontElement : public nsIDOMHTMLElement {
      26                 :  public: 
      27                 : 
      28                 :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLFONTELEMENT_IID)
      29                 : 
      30                 :   /* attribute DOMString color; */
      31                 :   NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor) = 0;
      32                 :   NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor) = 0;
      33                 : 
      34                 :   /* attribute DOMString face; */
      35                 :   NS_SCRIPTABLE NS_IMETHOD GetFace(nsAString & aFace) = 0;
      36                 :   NS_SCRIPTABLE NS_IMETHOD SetFace(const nsAString & aFace) = 0;
      37                 : 
      38                 :   /* attribute DOMString size; */
      39                 :   NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize) = 0;
      40                 :   NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize) = 0;
      41                 : 
      42                 : };
      43                 : 
      44                 :   NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLFontElement, NS_IDOMHTMLFONTELEMENT_IID)
      45                 : 
      46                 : /* Use this macro when declaring classes that implement this interface. */
      47                 : #define NS_DECL_NSIDOMHTMLFONTELEMENT \
      48                 :   NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor); \
      49                 :   NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor); \
      50                 :   NS_SCRIPTABLE NS_IMETHOD GetFace(nsAString & aFace); \
      51                 :   NS_SCRIPTABLE NS_IMETHOD SetFace(const nsAString & aFace); \
      52                 :   NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize); \
      53                 :   NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize); 
      54                 : 
      55                 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      56                 : #define NS_FORWARD_NSIDOMHTMLFONTELEMENT(_to) \
      57                 :   NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor) { return _to GetColor(aColor); } \
      58                 :   NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor) { return _to SetColor(aColor); } \
      59                 :   NS_SCRIPTABLE NS_IMETHOD GetFace(nsAString & aFace) { return _to GetFace(aFace); } \
      60                 :   NS_SCRIPTABLE NS_IMETHOD SetFace(const nsAString & aFace) { return _to SetFace(aFace); } \
      61                 :   NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize) { return _to GetSize(aSize); } \
      62                 :   NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize) { return _to SetSize(aSize); } 
      63                 : 
      64                 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
      65                 : #define NS_FORWARD_SAFE_NSIDOMHTMLFONTELEMENT(_to) \
      66                 :   NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetColor(aColor); } \
      67                 :   NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetColor(aColor); } \
      68                 :   NS_SCRIPTABLE NS_IMETHOD GetFace(nsAString & aFace) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFace(aFace); } \
      69                 :   NS_SCRIPTABLE NS_IMETHOD SetFace(const nsAString & aFace) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFace(aFace); } \
      70                 :   NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSize(aSize); } \
      71                 :   NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSize(aSize); } 
      72                 : 
      73                 : #if 0
      74                 : /* Use the code below as a template for the implementation class for this interface. */
      75                 : 
      76                 : /* Header file */
      77                 : class nsDOMHTMLFontElement : public nsIDOMHTMLFontElement
      78                 : {
      79                 : public:
      80                 :   NS_DECL_ISUPPORTS
      81                 :   NS_DECL_NSIDOMHTMLFONTELEMENT
      82                 : 
      83                 :   nsDOMHTMLFontElement();
      84                 : 
      85                 : private:
      86                 :   ~nsDOMHTMLFontElement();
      87                 : 
      88                 : protected:
      89                 :   /* additional members */
      90                 : };
      91                 : 
      92                 : /* Implementation file */
      93                 : NS_IMPL_ISUPPORTS1(nsDOMHTMLFontElement, nsIDOMHTMLFontElement)
      94                 : 
      95                 : nsDOMHTMLFontElement::nsDOMHTMLFontElement()
      96                 : {
      97                 :   /* member initializers and constructor code */
      98                 : }
      99                 : 
     100                 : nsDOMHTMLFontElement::~nsDOMHTMLFontElement()
     101                 : {
     102                 :   /* destructor code */
     103                 : }
     104                 : 
     105                 : /* attribute DOMString color; */
     106                 : NS_IMETHODIMP nsDOMHTMLFontElement::GetColor(nsAString & aColor)
     107                 : {
     108                 :     return NS_ERROR_NOT_IMPLEMENTED;
     109                 : }
     110                 : NS_IMETHODIMP nsDOMHTMLFontElement::SetColor(const nsAString & aColor)
     111                 : {
     112                 :     return NS_ERROR_NOT_IMPLEMENTED;
     113                 : }
     114                 : 
     115                 : /* attribute DOMString face; */
     116                 : NS_IMETHODIMP nsDOMHTMLFontElement::GetFace(nsAString & aFace)
     117                 : {
     118                 :     return NS_ERROR_NOT_IMPLEMENTED;
     119                 : }
     120                 : NS_IMETHODIMP nsDOMHTMLFontElement::SetFace(const nsAString & aFace)
     121                 : {
     122                 :     return NS_ERROR_NOT_IMPLEMENTED;
     123                 : }
     124                 : 
     125                 : /* attribute DOMString size; */
     126                 : NS_IMETHODIMP nsDOMHTMLFontElement::GetSize(nsAString & aSize)
     127                 : {
     128                 :     return NS_ERROR_NOT_IMPLEMENTED;
     129                 : }
     130                 : NS_IMETHODIMP nsDOMHTMLFontElement::SetSize(const nsAString & aSize)
     131                 : {
     132                 :     return NS_ERROR_NOT_IMPLEMENTED;
     133                 : }
     134                 : 
     135                 : /* End of implementation class template. */
     136                 : #endif
     137                 : 
     138                 : 
     139                 : #endif /* __gen_nsIDOMHTMLFontElement_h__ */

Generated by: LCOV version 1.7