1. /*
  2. * The Apache Software License, Version 1.1
  3. *
  4. *
  5. * Copyright (c) 1999-2002 The Apache Software Foundation. All rights
  6. * reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in
  17. * the documentation and/or other materials provided with the
  18. * distribution.
  19. *
  20. * 3. The end-user documentation included with the redistribution,
  21. * if any, must include the following acknowledgment:
  22. * "This product includes software developed by the
  23. * Apache Software Foundation (http://www.apache.org/)."
  24. * Alternately, this acknowledgment may appear in the software itself,
  25. * if and wherever such third-party acknowledgments normally appear.
  26. *
  27. * 4. The names "Xerces" and "Apache Software Foundation" must
  28. * not be used to endorse or promote products derived from this
  29. * software without prior written permission. For written
  30. * permission, please contact apache@apache.org.
  31. *
  32. * 5. Products derived from this software may not be called "Apache",
  33. * nor may "Apache" appear in their name, without prior written
  34. * permission of the Apache Software Foundation.
  35. *
  36. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  37. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  38. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  39. * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  40. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  41. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  42. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  43. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  44. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  45. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  46. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  47. * SUCH DAMAGE.
  48. * ====================================================================
  49. *
  50. * This software consists of voluntary contributions made by many
  51. * individuals on behalf of the Apache Software Foundation and was
  52. * originally based on software copyright (c) 1999, International
  53. * Business Machines, Inc., http://www.apache.org. For more
  54. * information on the Apache Software Foundation, please see
  55. * <http://www.apache.org/>.
  56. */
  57. package com.sun.org.apache.xerces.internal.dom;
  58. import org.w3c.dom.Node;
  59. import org.w3c.dom.ProcessingInstruction;
  60. /**
  61. * Processing Instructions (PIs) permit documents to carry
  62. * processor-specific information alongside their actual content. PIs
  63. * are most common in XML, but they are supported in HTML as well.
  64. *
  65. * This class inherits from CharacterDataImpl to reuse its setNodeValue method.
  66. *
  67. * @version $Id: ProcessingInstructionImpl.java,v 1.12 2003/01/17 22:40:54 elena Exp $
  68. * @since PR-DOM-Level-1-19980818.
  69. */
  70. public class ProcessingInstructionImpl
  71. extends CharacterDataImpl
  72. implements ProcessingInstruction {
  73. //
  74. // Constants
  75. //
  76. /** Serialization version. */
  77. static final long serialVersionUID = 7554435174099981510L;
  78. //
  79. // Data
  80. //
  81. protected String target;
  82. //
  83. // Constructors
  84. //
  85. /** Factory constructor. */
  86. public ProcessingInstructionImpl(CoreDocumentImpl ownerDoc,
  87. String target, String data) {
  88. super(ownerDoc, data);
  89. this.target = target;
  90. }
  91. //
  92. // Node methods
  93. //
  94. /**
  95. * A short integer indicating what type of node this is. The named
  96. * constants for this value are defined in the org.w3c.dom.Node interface.
  97. */
  98. public short getNodeType() {
  99. return Node.PROCESSING_INSTRUCTION_NODE;
  100. }
  101. /**
  102. * Returns the target
  103. */
  104. public String getNodeName() {
  105. if (needsSyncData()) {
  106. synchronizeData();
  107. }
  108. return target;
  109. }
  110. //
  111. // ProcessingInstruction methods
  112. //
  113. /**
  114. * A PI's "target" states what processor channel the PI's data
  115. * should be directed to. It is defined differently in HTML and XML.
  116. * <p>
  117. * In XML, a PI's "target" is the first (whitespace-delimited) token
  118. * following the "<?" token that begins the PI.
  119. * <p>
  120. * In HTML, target is always null.
  121. * <p>
  122. * Note that getNodeName is aliased to getTarget.
  123. */
  124. public String getTarget() {
  125. if (needsSyncData()) {
  126. synchronizeData();
  127. }
  128. return target;
  129. } // getTarget():String
  130. /**
  131. * A PI's data content tells the processor what we actually want it
  132. * to do. It is defined slightly differently in HTML and XML.
  133. * <p>
  134. * In XML, the data begins with the non-whitespace character
  135. * immediately after the target -- @see getTarget().
  136. * <p>
  137. * In HTML, the data begins with the character immediately after the
  138. * "<?" token that begins the PI.
  139. * <p>
  140. * Note that getNodeValue is aliased to getData
  141. */
  142. public String getData() {
  143. if (needsSyncData()) {
  144. synchronizeData();
  145. }
  146. return data;
  147. } // getData():String
  148. /**
  149. * Change the data content of this PI.
  150. * Note that setData is aliased to setNodeValue.
  151. * @see #getData().
  152. * @throws DOMException(NO_MODIFICATION_ALLOWED_ERR) if node is read-only.
  153. */
  154. public void setData(String data) {
  155. // Hand off to setNodeValue for code-reuse reasons (mutation
  156. // events, readonly protection, synchronizing, etc.)
  157. setNodeValue(data);
  158. } // setData(String)
  159. /**
  160. * DOM Level 3 WD - Experimental.
  161. * Retrieve baseURI
  162. */
  163. public String getBaseURI() {
  164. if (needsSyncData()) {
  165. synchronizeData();
  166. }
  167. return ownerNode.getBaseURI();
  168. }
  169. } // class ProcessingInstructionImpl