Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
178
Src/nprt_plugin/gecko/1.8/win/include/nsIDOMCharacterData.h
Normal file
178
Src/nprt_plugin/gecko/1.8/win/include/nsIDOMCharacterData.h
Normal file
|
@ -0,0 +1,178 @@
|
|||
/*
|
||||
* DO NOT EDIT. THIS FILE IS GENERATED FROM c:/mozilla/dom/public/idl/core/nsIDOMCharacterData.idl
|
||||
*/
|
||||
|
||||
#ifndef __gen_nsIDOMCharacterData_h__
|
||||
#define __gen_nsIDOMCharacterData_h__
|
||||
|
||||
|
||||
#ifndef __gen_nsIDOMNode_h__
|
||||
#include "nsIDOMNode.h"
|
||||
#endif
|
||||
|
||||
/* For IDL files that don't want to include root IDL files. */
|
||||
#ifndef NS_NO_VTABLE
|
||||
#define NS_NO_VTABLE
|
||||
#endif
|
||||
|
||||
/* starting interface: nsIDOMCharacterData */
|
||||
#define NS_IDOMCHARACTERDATA_IID_STR "a6cf9072-15b3-11d2-932e-00805f8add32"
|
||||
|
||||
#define NS_IDOMCHARACTERDATA_IID \
|
||||
{0xa6cf9072, 0x15b3, 0x11d2, \
|
||||
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
|
||||
|
||||
class NS_NO_VTABLE nsIDOMCharacterData : public nsIDOMNode {
|
||||
public:
|
||||
|
||||
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMCHARACTERDATA_IID)
|
||||
|
||||
/**
|
||||
* The nsIDOMCharacterData interface extends nsIDOMNode with a set of
|
||||
* attributes and methods for accessing character data in the DOM.
|
||||
*
|
||||
* For more information on this interface please see
|
||||
* http://www.w3.org/TR/DOM-Level-2-Core/
|
||||
*
|
||||
* @status FROZEN
|
||||
*/
|
||||
/* attribute DOMString data; */
|
||||
NS_IMETHOD GetData(nsAString & aData) = 0;
|
||||
NS_IMETHOD SetData(const nsAString & aData) = 0;
|
||||
|
||||
/* readonly attribute unsigned long length; */
|
||||
NS_IMETHOD GetLength(PRUint32 *aLength) = 0;
|
||||
|
||||
/* DOMString substringData (in unsigned long offset, in unsigned long count) raises (DOMException); */
|
||||
NS_IMETHOD SubstringData(PRUint32 offset, PRUint32 count, nsAString & _retval) = 0;
|
||||
|
||||
/* void appendData (in DOMString arg) raises (DOMException); */
|
||||
NS_IMETHOD AppendData(const nsAString & arg) = 0;
|
||||
|
||||
/* void insertData (in unsigned long offset, in DOMString arg) raises (DOMException); */
|
||||
NS_IMETHOD InsertData(PRUint32 offset, const nsAString & arg) = 0;
|
||||
|
||||
/* void deleteData (in unsigned long offset, in unsigned long count) raises (DOMException); */
|
||||
NS_IMETHOD DeleteData(PRUint32 offset, PRUint32 count) = 0;
|
||||
|
||||
/* void replaceData (in unsigned long offset, in unsigned long count, in DOMString arg) raises (DOMException); */
|
||||
NS_IMETHOD ReplaceData(PRUint32 offset, PRUint32 count, const nsAString & arg) = 0;
|
||||
|
||||
};
|
||||
|
||||
/* Use this macro when declaring classes that implement this interface. */
|
||||
#define NS_DECL_NSIDOMCHARACTERDATA \
|
||||
NS_IMETHOD GetData(nsAString & aData); \
|
||||
NS_IMETHOD SetData(const nsAString & aData); \
|
||||
NS_IMETHOD GetLength(PRUint32 *aLength); \
|
||||
NS_IMETHOD SubstringData(PRUint32 offset, PRUint32 count, nsAString & _retval); \
|
||||
NS_IMETHOD AppendData(const nsAString & arg); \
|
||||
NS_IMETHOD InsertData(PRUint32 offset, const nsAString & arg); \
|
||||
NS_IMETHOD DeleteData(PRUint32 offset, PRUint32 count); \
|
||||
NS_IMETHOD ReplaceData(PRUint32 offset, PRUint32 count, const nsAString & arg);
|
||||
|
||||
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
|
||||
#define NS_FORWARD_NSIDOMCHARACTERDATA(_to) \
|
||||
NS_IMETHOD GetData(nsAString & aData) { return _to GetData(aData); } \
|
||||
NS_IMETHOD SetData(const nsAString & aData) { return _to SetData(aData); } \
|
||||
NS_IMETHOD GetLength(PRUint32 *aLength) { return _to GetLength(aLength); } \
|
||||
NS_IMETHOD SubstringData(PRUint32 offset, PRUint32 count, nsAString & _retval) { return _to SubstringData(offset, count, _retval); } \
|
||||
NS_IMETHOD AppendData(const nsAString & arg) { return _to AppendData(arg); } \
|
||||
NS_IMETHOD InsertData(PRUint32 offset, const nsAString & arg) { return _to InsertData(offset, arg); } \
|
||||
NS_IMETHOD DeleteData(PRUint32 offset, PRUint32 count) { return _to DeleteData(offset, count); } \
|
||||
NS_IMETHOD ReplaceData(PRUint32 offset, PRUint32 count, const nsAString & arg) { return _to ReplaceData(offset, count, arg); }
|
||||
|
||||
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
|
||||
#define NS_FORWARD_SAFE_NSIDOMCHARACTERDATA(_to) \
|
||||
NS_IMETHOD GetData(nsAString & aData) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetData(aData); } \
|
||||
NS_IMETHOD SetData(const nsAString & aData) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetData(aData); } \
|
||||
NS_IMETHOD GetLength(PRUint32 *aLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLength(aLength); } \
|
||||
NS_IMETHOD SubstringData(PRUint32 offset, PRUint32 count, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->SubstringData(offset, count, _retval); } \
|
||||
NS_IMETHOD AppendData(const nsAString & arg) { return !_to ? NS_ERROR_NULL_POINTER : _to->AppendData(arg); } \
|
||||
NS_IMETHOD InsertData(PRUint32 offset, const nsAString & arg) { return !_to ? NS_ERROR_NULL_POINTER : _to->InsertData(offset, arg); } \
|
||||
NS_IMETHOD DeleteData(PRUint32 offset, PRUint32 count) { return !_to ? NS_ERROR_NULL_POINTER : _to->DeleteData(offset, count); } \
|
||||
NS_IMETHOD ReplaceData(PRUint32 offset, PRUint32 count, const nsAString & arg) { return !_to ? NS_ERROR_NULL_POINTER : _to->ReplaceData(offset, count, arg); }
|
||||
|
||||
#if 0
|
||||
/* Use the code below as a template for the implementation class for this interface. */
|
||||
|
||||
/* Header file */
|
||||
class nsDOMCharacterData : public nsIDOMCharacterData
|
||||
{
|
||||
public:
|
||||
NS_DECL_ISUPPORTS
|
||||
NS_DECL_NSIDOMCHARACTERDATA
|
||||
|
||||
nsDOMCharacterData();
|
||||
|
||||
private:
|
||||
~nsDOMCharacterData();
|
||||
|
||||
protected:
|
||||
/* additional members */
|
||||
};
|
||||
|
||||
/* Implementation file */
|
||||
NS_IMPL_ISUPPORTS1(nsDOMCharacterData, nsIDOMCharacterData)
|
||||
|
||||
nsDOMCharacterData::nsDOMCharacterData()
|
||||
{
|
||||
/* member initializers and constructor code */
|
||||
}
|
||||
|
||||
nsDOMCharacterData::~nsDOMCharacterData()
|
||||
{
|
||||
/* destructor code */
|
||||
}
|
||||
|
||||
/* attribute DOMString data; */
|
||||
NS_IMETHODIMP nsDOMCharacterData::GetData(nsAString & aData)
|
||||
{
|
||||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
NS_IMETHODIMP nsDOMCharacterData::SetData(const nsAString & aData)
|
||||
{
|
||||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/* readonly attribute unsigned long length; */
|
||||
NS_IMETHODIMP nsDOMCharacterData::GetLength(PRUint32 *aLength)
|
||||
{
|
||||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/* DOMString substringData (in unsigned long offset, in unsigned long count) raises (DOMException); */
|
||||
NS_IMETHODIMP nsDOMCharacterData::SubstringData(PRUint32 offset, PRUint32 count, nsAString & _retval)
|
||||
{
|
||||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/* void appendData (in DOMString arg) raises (DOMException); */
|
||||
NS_IMETHODIMP nsDOMCharacterData::AppendData(const nsAString & arg)
|
||||
{
|
||||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/* void insertData (in unsigned long offset, in DOMString arg) raises (DOMException); */
|
||||
NS_IMETHODIMP nsDOMCharacterData::InsertData(PRUint32 offset, const nsAString & arg)
|
||||
{
|
||||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/* void deleteData (in unsigned long offset, in unsigned long count) raises (DOMException); */
|
||||
NS_IMETHODIMP nsDOMCharacterData::DeleteData(PRUint32 offset, PRUint32 count)
|
||||
{
|
||||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/* void replaceData (in unsigned long offset, in unsigned long count, in DOMString arg) raises (DOMException); */
|
||||
NS_IMETHODIMP nsDOMCharacterData::ReplaceData(PRUint32 offset, PRUint32 count, const nsAString & arg)
|
||||
{
|
||||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/* End of implementation class template. */
|
||||
#endif
|
||||
|
||||
|
||||
#endif /* __gen_nsIDOMCharacterData_h__ */
|
Loading…
Add table
Add a link
Reference in a new issue