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

       1                 : /*
       2                 :  * DO NOT EDIT.  THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/dom/interfaces/html/nsIDOMHTMLOListElement.idl
       3                 :  */
       4                 : 
       5                 : #ifndef __gen_nsIDOMHTMLOListElement_h__
       6                 : #define __gen_nsIDOMHTMLOListElement_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:    nsIDOMHTMLOListElement */
      19                 : #define NS_IDOMHTMLOLISTELEMENT_IID_STR "31a5f083-59a6-41c3-8a0b-e58e484c6516"
      20                 : 
      21                 : #define NS_IDOMHTMLOLISTELEMENT_IID \
      22                 :   {0x31a5f083, 0x59a6, 0x41c3, \
      23                 :     { 0x8a, 0x0b, 0xe5, 0x8e, 0x48, 0x4c, 0x65, 0x16 }}
      24                 : 
      25               4 : class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMHTMLOListElement : public nsIDOMHTMLElement {
      26                 :  public: 
      27                 : 
      28                 :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLOLISTELEMENT_IID)
      29                 : 
      30                 :   /* attribute boolean compact; */
      31                 :   NS_SCRIPTABLE NS_IMETHOD GetCompact(bool *aCompact) = 0;
      32                 :   NS_SCRIPTABLE NS_IMETHOD SetCompact(bool aCompact) = 0;
      33                 : 
      34                 :   /* attribute long start; */
      35                 :   NS_SCRIPTABLE NS_IMETHOD GetStart(PRInt32 *aStart) = 0;
      36                 :   NS_SCRIPTABLE NS_IMETHOD SetStart(PRInt32 aStart) = 0;
      37                 : 
      38                 :   /* attribute DOMString type; */
      39                 :   NS_SCRIPTABLE NS_IMETHOD GetType(nsAString & aType) = 0;
      40                 :   NS_SCRIPTABLE NS_IMETHOD SetType(const nsAString & aType) = 0;
      41                 : 
      42                 : };
      43                 : 
      44                 :   NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLOListElement, NS_IDOMHTMLOLISTELEMENT_IID)
      45                 : 
      46                 : /* Use this macro when declaring classes that implement this interface. */
      47                 : #define NS_DECL_NSIDOMHTMLOLISTELEMENT \
      48                 :   NS_SCRIPTABLE NS_IMETHOD GetCompact(bool *aCompact); \
      49                 :   NS_SCRIPTABLE NS_IMETHOD SetCompact(bool aCompact); \
      50                 :   NS_SCRIPTABLE NS_IMETHOD GetStart(PRInt32 *aStart); \
      51                 :   NS_SCRIPTABLE NS_IMETHOD SetStart(PRInt32 aStart); \
      52                 :   NS_SCRIPTABLE NS_IMETHOD GetType(nsAString & aType); \
      53                 :   NS_SCRIPTABLE NS_IMETHOD SetType(const nsAString & aType); 
      54                 : 
      55                 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      56                 : #define NS_FORWARD_NSIDOMHTMLOLISTELEMENT(_to) \
      57                 :   NS_SCRIPTABLE NS_IMETHOD GetCompact(bool *aCompact) { return _to GetCompact(aCompact); } \
      58                 :   NS_SCRIPTABLE NS_IMETHOD SetCompact(bool aCompact) { return _to SetCompact(aCompact); } \
      59                 :   NS_SCRIPTABLE NS_IMETHOD GetStart(PRInt32 *aStart) { return _to GetStart(aStart); } \
      60                 :   NS_SCRIPTABLE NS_IMETHOD SetStart(PRInt32 aStart) { return _to SetStart(aStart); } \
      61                 :   NS_SCRIPTABLE NS_IMETHOD GetType(nsAString & aType) { return _to GetType(aType); } \
      62                 :   NS_SCRIPTABLE NS_IMETHOD SetType(const nsAString & aType) { return _to SetType(aType); } 
      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_NSIDOMHTMLOLISTELEMENT(_to) \
      66                 :   NS_SCRIPTABLE NS_IMETHOD GetCompact(bool *aCompact) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCompact(aCompact); } \
      67                 :   NS_SCRIPTABLE NS_IMETHOD SetCompact(bool aCompact) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCompact(aCompact); } \
      68                 :   NS_SCRIPTABLE NS_IMETHOD GetStart(PRInt32 *aStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStart(aStart); } \
      69                 :   NS_SCRIPTABLE NS_IMETHOD SetStart(PRInt32 aStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStart(aStart); } \
      70                 :   NS_SCRIPTABLE NS_IMETHOD GetType(nsAString & aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \
      71                 :   NS_SCRIPTABLE NS_IMETHOD SetType(const nsAString & aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetType(aType); } 
      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 nsDOMHTMLOListElement : public nsIDOMHTMLOListElement
      78                 : {
      79                 : public:
      80                 :   NS_DECL_ISUPPORTS
      81                 :   NS_DECL_NSIDOMHTMLOLISTELEMENT
      82                 : 
      83                 :   nsDOMHTMLOListElement();
      84                 : 
      85                 : private:
      86                 :   ~nsDOMHTMLOListElement();
      87                 : 
      88                 : protected:
      89                 :   /* additional members */
      90                 : };
      91                 : 
      92                 : /* Implementation file */
      93                 : NS_IMPL_ISUPPORTS1(nsDOMHTMLOListElement, nsIDOMHTMLOListElement)
      94                 : 
      95                 : nsDOMHTMLOListElement::nsDOMHTMLOListElement()
      96                 : {
      97                 :   /* member initializers and constructor code */
      98                 : }
      99                 : 
     100                 : nsDOMHTMLOListElement::~nsDOMHTMLOListElement()
     101                 : {
     102                 :   /* destructor code */
     103                 : }
     104                 : 
     105                 : /* attribute boolean compact; */
     106                 : NS_IMETHODIMP nsDOMHTMLOListElement::GetCompact(bool *aCompact)
     107                 : {
     108                 :     return NS_ERROR_NOT_IMPLEMENTED;
     109                 : }
     110                 : NS_IMETHODIMP nsDOMHTMLOListElement::SetCompact(bool aCompact)
     111                 : {
     112                 :     return NS_ERROR_NOT_IMPLEMENTED;
     113                 : }
     114                 : 
     115                 : /* attribute long start; */
     116                 : NS_IMETHODIMP nsDOMHTMLOListElement::GetStart(PRInt32 *aStart)
     117                 : {
     118                 :     return NS_ERROR_NOT_IMPLEMENTED;
     119                 : }
     120                 : NS_IMETHODIMP nsDOMHTMLOListElement::SetStart(PRInt32 aStart)
     121                 : {
     122                 :     return NS_ERROR_NOT_IMPLEMENTED;
     123                 : }
     124                 : 
     125                 : /* attribute DOMString type; */
     126                 : NS_IMETHODIMP nsDOMHTMLOListElement::GetType(nsAString & aType)
     127                 : {
     128                 :     return NS_ERROR_NOT_IMPLEMENTED;
     129                 : }
     130                 : NS_IMETHODIMP nsDOMHTMLOListElement::SetType(const nsAString & aType)
     131                 : {
     132                 :     return NS_ERROR_NOT_IMPLEMENTED;
     133                 : }
     134                 : 
     135                 : /* End of implementation class template. */
     136                 : #endif
     137                 : 
     138                 : 
     139                 : #endif /* __gen_nsIDOMHTMLOListElement_h__ */

Generated by: LCOV version 1.7