2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2003-01-22 03:25:51 +00:00
|
|
|
|
|
|
|
#ifndef nsIAttribute_h___
|
|
|
|
#define nsIAttribute_h___
|
|
|
|
|
2006-01-25 20:49:56 +00:00
|
|
|
#include "nsINode.h"
|
2003-01-22 03:25:51 +00:00
|
|
|
|
2005-06-01 13:46:20 +00:00
|
|
|
class nsDOMAttributeMap;
|
2005-06-06 08:51:40 +00:00
|
|
|
|
2003-01-22 03:25:51 +00:00
|
|
|
#define NS_IATTRIBUTE_IID \
|
2015-09-17 10:16:20 +00:00
|
|
|
{ 0x84d43da7, 0xb45d, 0x47ae, \
|
|
|
|
{ 0x8f, 0xbf, 0x95, 0x26, 0x78, 0x4d, 0x5e, 0x47 } }
|
2003-01-22 03:25:51 +00:00
|
|
|
|
2006-01-25 20:49:56 +00:00
|
|
|
class nsIAttribute : public nsINode
|
2003-01-22 03:25:51 +00:00
|
|
|
{
|
|
|
|
public:
|
2005-11-11 14:36:26 +00:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IATTRIBUTE_IID)
|
2003-01-22 03:25:51 +00:00
|
|
|
|
2005-06-01 13:46:20 +00:00
|
|
|
virtual void SetMap(nsDOMAttributeMap *aMap) = 0;
|
|
|
|
|
|
|
|
nsDOMAttributeMap *GetMap()
|
2004-01-24 00:46:17 +00:00
|
|
|
{
|
2005-06-01 13:46:20 +00:00
|
|
|
return mAttrMap;
|
2004-01-24 00:46:17 +00:00
|
|
|
}
|
2003-01-22 03:25:51 +00:00
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
mozilla::dom::NodeInfo *NodeInfo() const
|
2004-01-24 00:46:17 +00:00
|
|
|
{
|
|
|
|
return mNodeInfo;
|
|
|
|
}
|
|
|
|
|
2005-12-29 03:01:58 +00:00
|
|
|
/**
|
|
|
|
* Called when our ownerElement is moved into a new document.
|
|
|
|
* Updates the nodeinfo of this node.
|
|
|
|
*/
|
|
|
|
virtual nsresult SetOwnerDocument(nsIDocument* aDocument) = 0;
|
|
|
|
|
2004-01-24 00:46:17 +00:00
|
|
|
protected:
|
2007-08-07 23:01:57 +00:00
|
|
|
#ifdef MOZILLA_INTERNAL_API
|
2014-03-15 19:00:17 +00:00
|
|
|
nsIAttribute(nsDOMAttributeMap *aAttrMap,
|
2016-01-11 18:01:31 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2007-08-07 23:01:57 +00:00
|
|
|
#endif //MOZILLA_INTERNAL_API
|
2014-02-27 12:54:32 +00:00
|
|
|
virtual ~nsIAttribute();
|
2004-01-24 00:46:17 +00:00
|
|
|
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsDOMAttributeMap> mAttrMap;
|
2003-01-22 03:25:51 +00:00
|
|
|
};
|
|
|
|
|
2005-11-11 14:36:26 +00:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAttribute, NS_IATTRIBUTE_IID)
|
|
|
|
|
2003-01-22 03:25:51 +00:00
|
|
|
#endif /* nsIAttribute_h___ */
|