?? processinginstruction.java
字號:
/*-- $Id: ProcessingInstruction.java,v 1.47 2007/11/10 05:28:59 jhunter Exp $ Copyright (C) 2000-2007 Jason Hunter & Brett McLaughlin. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions, and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions, and the disclaimer that follows these conditions in the documentation and/or other materials provided with the distribution. 3. The name "JDOM" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact <request_AT_jdom_DOT_org>. 4. Products derived from this software may not be called "JDOM", nor may "JDOM" appear in their name, without prior written permission from the JDOM Project Management <request_AT_jdom_DOT_org>. In addition, we request (but do not require) that you include in the end-user documentation provided with the redistribution and/or in the software itself an acknowledgement equivalent to the following: "This product includes software developed by the JDOM Project (http://www.jdom.org/)." Alternatively, the acknowledgment may be graphical using the logos available at http://www.jdom.org/images/logos. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This software consists of voluntary contributions made by many individuals on behalf of the JDOM Project and was originally created by Jason Hunter <jhunter_AT_jdom_DOT_org> and Brett McLaughlin <brett_AT_jdom_DOT_org>. For more information on the JDOM Project, please see <http://www.jdom.org/>. */package org.jdom;import java.util.*;/** * An XML processing instruction. Methods allow the user to obtain the target of * the PI as well as its data. The data can always be accessed as a String or, * if the data appears akin to an attribute list, can be retrieved as name/value * pairs. * * @version $Revision: 1.47 $, $Date: 2007/11/10 05:28:59 $ * @author Brett McLaughlin * @author Jason Hunter * @author Steven Gould */public class ProcessingInstruction extends Content { private static final String CVS_ID = "@(#) $RCSfile: ProcessingInstruction.java,v $ $Revision: 1.47 $ $Date: 2007/11/10 05:28:59 $ $Name: jdom_1_1 $"; /** The target of the PI */ protected String target; /** The data for the PI as a String */ protected String rawData; /** The data for the PI in name/value pairs */ protected Map mapData; /** * Default, no-args constructor for implementations * to use if needed. */ protected ProcessingInstruction() { } /** * This will create a new <code>ProcessingInstruction</code> * with the specified target and data. * * @param target <code>String</code> target of PI. * @param data <code>Map</code> data for PI, in * name/value pairs * @throws IllegalTargetException if the given target is illegal * as a processing instruction name. */ public ProcessingInstruction(String target, Map data) { setTarget(target); setData(data); } /** * This will create a new <code>ProcessingInstruction</code> * with the specified target and data. * * @param target <code>String</code> target of PI. * @param data <code>String</code> data for PI. * @throws IllegalTargetException if the given target is illegal * as a processing instruction name. */ public ProcessingInstruction(String target, String data) { setTarget(target); setData(data); } /** * This will set the target for the PI. * * @param newTarget <code>String</code> new target of PI. * @return <code>ProcessingInstruction</code> - this PI modified. */ public ProcessingInstruction setTarget(String newTarget) { String reason; if ((reason = Verifier.checkProcessingInstructionTarget(newTarget)) != null) { throw new IllegalTargetException(newTarget, reason); } target = newTarget; return this; } /** * Returns the XPath 1.0 string value of this element, which is the * data of this PI. * * @return the data of this PI */ public String getValue() { return rawData; } /** * This will retrieve the target of the PI. * * @return <code>String</code> - target of PI. */ public String getTarget() { return target; } /** * This will return the raw data from all instructions. * * @return <code>String</code> - data of PI. */ public String getData() { return rawData; } /** * This will return a <code>List</code> containing the names of the * "attribute" style pieces of name/value pairs in this PI's data. * * @return <code>List</code> - the <code>List</code> containing the * "attribute" names. */ public List getPseudoAttributeNames() { Set mapDataSet = mapData.entrySet(); List nameList = new ArrayList(); for (Iterator i = mapDataSet.iterator(); i.hasNext();) { String wholeSet = (i.next()).toString(); String attrName = wholeSet.substring(0,(wholeSet.indexOf("="))); nameList.add(attrName); } return nameList; } /** * This will set the raw data for the PI. * * @param data <code>String</code> data of PI. * @return <code>ProcessingInstruction</code> - this PI modified. */ public ProcessingInstruction setData(String data) { String reason = Verifier.checkProcessingInstructionData(data); if (reason != null) { throw new IllegalDataException(data, reason); } this.rawData = data; this.mapData = parseData(data); return this; } /** * This will set the name/value pairs within the passed * <code>Map</code> as the pairs for the data of * this PI. The keys should be the pair name * and the values should be the pair values. * * @param data new map data to use * @return <code>ProcessingInstruction</code> - modified PI. */ public ProcessingInstruction setData(Map data) { String temp = toString(data); String reason = Verifier.checkProcessingInstructionData(temp); if (reason != null) { throw new IllegalDataException(temp, reason); } this.rawData = temp; this.mapData = data; return this; } /** * This will return the value for a specific * name/value pair on the PI. If no such pair is * found for this PI, null is returned. * * @param name <code>String</code> name of name/value pair * to lookup value for. * @return <code>String</code> - value of name/value pair. */ public String getPseudoAttributeValue(String name) { return (String)mapData.get(name); }
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -