/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * * The contents of this file are subject to the Netscape Public License * Version 1.0 (the "NPL"); you may not use this file except in * compliance with the NPL. You may obtain a copy of the NPL at * http://www.mozilla.org/NPL/ * * Software distributed under the NPL is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL * for the specific language governing rights and limitations under the * NPL. * * The Initial Developer of this code under the NPL is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998 Netscape Communications Corporation. All Rights * Reserved. */ /* AUTO-GENERATED. DO NOT EDIT!!! */ #ifndef nsIDOMHTMLScriptElement_h__ #define nsIDOMHTMLScriptElement_h__ #include "nsISupports.h" #include "nsString.h" #include "nsIScriptContext.h" #include "nsIDOMHTMLElement.h" #define NS_IDOMHTMLSCRIPTELEMENT_IID \ { 0xa6cf90b1, 0x15b3, 0x11d2, \ { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } class nsIDOMHTMLScriptElement : public nsIDOMHTMLElement { public: static const nsIID& GetIID() { static nsIID iid = NS_IDOMHTMLSCRIPTELEMENT_IID; return iid; } NS_IMETHOD GetText(nsString& aText)=0; NS_IMETHOD SetText(const nsString& aText)=0; NS_IMETHOD GetHtmlFor(nsString& aHtmlFor)=0; NS_IMETHOD SetHtmlFor(const nsString& aHtmlFor)=0; NS_IMETHOD GetEvent(nsString& aEvent)=0; NS_IMETHOD SetEvent(const nsString& aEvent)=0; NS_IMETHOD GetCharset(nsString& aCharset)=0; NS_IMETHOD SetCharset(const nsString& aCharset)=0; NS_IMETHOD GetDefer(PRBool* aDefer)=0; NS_IMETHOD SetDefer(PRBool aDefer)=0; NS_IMETHOD GetSrc(nsString& aSrc)=0; NS_IMETHOD SetSrc(const nsString& aSrc)=0; NS_IMETHOD GetType(nsString& aType)=0; NS_IMETHOD SetType(const nsString& aType)=0; }; #define NS_DECL_IDOMHTMLSCRIPTELEMENT \ NS_IMETHOD GetText(nsString& aText); \ NS_IMETHOD SetText(const nsString& aText); \ NS_IMETHOD GetHtmlFor(nsString& aHtmlFor); \ NS_IMETHOD SetHtmlFor(const nsString& aHtmlFor); \ NS_IMETHOD GetEvent(nsString& aEvent); \ NS_IMETHOD SetEvent(const nsString& aEvent); \ NS_IMETHOD GetCharset(nsString& aCharset); \ NS_IMETHOD SetCharset(const nsString& aCharset); \ NS_IMETHOD GetDefer(PRBool* aDefer); \ NS_IMETHOD SetDefer(PRBool aDefer); \ NS_IMETHOD GetSrc(nsString& aSrc); \ NS_IMETHOD SetSrc(const nsString& aSrc); \ NS_IMETHOD GetType(nsString& aType); \ NS_IMETHOD SetType(const nsString& aType); \ #define NS_FORWARD_IDOMHTMLSCRIPTELEMENT(_to) \ NS_IMETHOD GetText(nsString& aText) { return _to GetText(aText); } \ NS_IMETHOD SetText(const nsString& aText) { return _to SetText(aText); } \ NS_IMETHOD GetHtmlFor(nsString& aHtmlFor) { return _to GetHtmlFor(aHtmlFor); } \ NS_IMETHOD SetHtmlFor(const nsString& aHtmlFor) { return _to SetHtmlFor(aHtmlFor); } \ NS_IMETHOD GetEvent(nsString& aEvent) { return _to GetEvent(aEvent); } \ NS_IMETHOD SetEvent(const nsString& aEvent) { return _to SetEvent(aEvent); } \ NS_IMETHOD GetCharset(nsString& aCharset) { return _to GetCharset(aCharset); } \ NS_IMETHOD SetCharset(const nsString& aCharset) { return _to SetCharset(aCharset); } \ NS_IMETHOD GetDefer(PRBool* aDefer) { return _to GetDefer(aDefer); } \ NS_IMETHOD SetDefer(PRBool aDefer) { return _to SetDefer(aDefer); } \ NS_IMETHOD GetSrc(nsString& aSrc) { return _to GetSrc(aSrc); } \ NS_IMETHOD SetSrc(const nsString& aSrc) { return _to SetSrc(aSrc); } \ NS_IMETHOD GetType(nsString& aType) { return _to GetType(aType); } \ NS_IMETHOD SetType(const nsString& aType) { return _to SetType(aType); } \ extern "C" NS_DOM nsresult NS_InitHTMLScriptElementClass(nsIScriptContext *aContext, void **aPrototype); extern "C" NS_DOM nsresult NS_NewScriptHTMLScriptElement(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn); #endif // nsIDOMHTMLScriptElement_h__