2002-09-04 06:57:25 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2002-09-04 06:57:25 +00:00
|
|
|
|
2013-01-08 20:45:06 +00:00
|
|
|
#ifndef mozilla_dom_ProcessingInstruction_h
|
|
|
|
#define mozilla_dom_ProcessingInstruction_h
|
2002-09-04 06:57:25 +00:00
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2002-09-04 06:57:25 +00:00
|
|
|
#include "nsIDOMProcessingInstruction.h"
|
|
|
|
#include "nsGenericDOMDataNode.h"
|
|
|
|
#include "nsAString.h"
|
|
|
|
|
2013-01-08 20:45:06 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2002-09-04 06:57:25 +00:00
|
|
|
|
2013-01-08 20:45:06 +00:00
|
|
|
class ProcessingInstruction : public nsGenericDOMDataNode,
|
|
|
|
public nsIDOMProcessingInstruction
|
2002-09-04 06:57:25 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-06-20 02:01:40 +00:00
|
|
|
ProcessingInstruction(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo,
|
2013-01-08 20:45:06 +00:00
|
|
|
const nsAString& aData);
|
2002-09-04 06:57:25 +00:00
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMNode
|
2012-10-09 12:31:24 +00:00
|
|
|
NS_FORWARD_NSIDOMNODE_TO_NSINODE
|
2002-09-04 06:57:25 +00:00
|
|
|
|
2011-09-20 05:08:00 +00:00
|
|
|
// nsIDOMCharacterData
|
|
|
|
NS_FORWARD_NSIDOMCHARACTERDATA(nsGenericDOMDataNode::)
|
2013-07-17 14:09:04 +00:00
|
|
|
using nsGenericDOMDataNode::SetData; // Prevent hiding overloaded virtual function.
|
2011-09-20 05:08:00 +00:00
|
|
|
|
2002-09-04 06:57:25 +00:00
|
|
|
// nsIDOMProcessingInstruction
|
|
|
|
NS_DECL_NSIDOMPROCESSINGINSTRUCTION
|
|
|
|
|
2011-06-14 07:56:48 +00:00
|
|
|
// nsINode
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual bool IsNodeOfType(uint32_t aFlags) const;
|
2011-06-14 07:56:48 +00:00
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
virtual nsGenericDOMDataNode* CloneDataNode(mozilla::dom::NodeInfo *aNodeInfo,
|
2013-05-29 20:43:41 +00:00
|
|
|
bool aCloneText) const MOZ_OVERRIDE;
|
2002-09-04 06:57:25 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2013-05-29 20:43:41 +00:00
|
|
|
virtual void List(FILE* out, int32_t aIndent) const MOZ_OVERRIDE;
|
|
|
|
virtual void DumpContent(FILE* out, int32_t aIndent, bool aDumpAll) const MOZ_OVERRIDE;
|
2002-09-04 06:57:25 +00:00
|
|
|
#endif
|
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
virtual nsIDOMNode* AsDOMNode() MOZ_OVERRIDE { return this; }
|
2013-01-08 20:45:06 +00:00
|
|
|
|
|
|
|
// WebIDL API
|
|
|
|
void GetTarget(nsString& aTarget)
|
|
|
|
{
|
|
|
|
aTarget = NodeName();
|
|
|
|
}
|
2002-09-04 06:57:25 +00:00
|
|
|
protected:
|
2014-07-08 21:23:16 +00:00
|
|
|
virtual ~ProcessingInstruction();
|
|
|
|
|
2006-03-17 14:38:57 +00:00
|
|
|
/**
|
|
|
|
* This will parse the content of the PI, to extract the value of the pseudo
|
|
|
|
* attribute with the name specified in aName. See
|
|
|
|
* http://www.w3.org/TR/xml-stylesheet/#NT-StyleSheetPI for the specification
|
|
|
|
* which is used to parse the content of the PI.
|
|
|
|
*
|
|
|
|
* @param aName the name of the attribute to get the value for
|
|
|
|
* @param aValue [out] the value for the attribute with name specified in
|
|
|
|
* aAttribute. Empty if the attribute isn't present.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetAttrValue(nsIAtom *aName, nsAString& aValue);
|
2013-01-08 20:45:06 +00:00
|
|
|
|
2014-04-08 22:27:17 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx) MOZ_OVERRIDE;
|
2002-09-04 06:57:25 +00:00
|
|
|
};
|
|
|
|
|
2013-01-08 20:45:06 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2013-04-04 12:01:11 +00:00
|
|
|
/**
|
|
|
|
* aNodeInfoManager must not be null.
|
|
|
|
*/
|
|
|
|
already_AddRefed<mozilla::dom::ProcessingInstruction>
|
|
|
|
NS_NewXMLProcessingInstruction(nsNodeInfoManager *aNodeInfoManager,
|
|
|
|
const nsAString& aTarget,
|
|
|
|
const nsAString& aData);
|
|
|
|
|
2013-01-08 20:45:06 +00:00
|
|
|
#endif // mozilla_dom_ProcessingInstruction_h
|