src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/CharactersEvent.java

changeset 286
f50545b5e2f1
parent 0
373ffda63c9a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/CharactersEvent.java	Tue Mar 06 16:09:35 2012 -0800
     1.3 @@ -0,0 +1,139 @@
     1.4 +/*
     1.5 + * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + *
    1.28 + * THIS FILE WAS MODIFIED BY SUN MICROSYSTEMS, INC.
    1.29 + */
    1.30 +
    1.31 +package com.sun.xml.internal.fastinfoset.stax.events ;
    1.32 +
    1.33 +import com.sun.xml.internal.fastinfoset.org.apache.xerces.util.XMLChar;
    1.34 +import javax.xml.stream.events.Characters;
    1.35 +
    1.36 +
    1.37 +public class CharactersEvent extends EventBase implements Characters {
    1.38 +    private String _text;
    1.39 +    private boolean isCData=false;
    1.40 +    private boolean isSpace=false;
    1.41 +    private boolean isIgnorable=false;
    1.42 +    private boolean needtoCheck = true;
    1.43 +
    1.44 +    public CharactersEvent() {
    1.45 +        super(CHARACTERS);
    1.46 +    }
    1.47 +    /**
    1.48 +     *
    1.49 +     * @param data Character Data.
    1.50 +     */
    1.51 +    public CharactersEvent(String data) {
    1.52 +        super(CHARACTERS);
    1.53 +        _text = data;
    1.54 +    }
    1.55 +
    1.56 +    /**
    1.57 +     *
    1.58 +     * @param data Character Data.
    1.59 +     * @param isCData true if is CData
    1.60 +     */
    1.61 +    public CharactersEvent(String data, boolean isCData) {
    1.62 +        super(CHARACTERS);
    1.63 +        _text = data;
    1.64 +        this.isCData = isCData;
    1.65 +    }
    1.66 +
    1.67 +  /**
    1.68 +   * Get the character data of this event
    1.69 +   */
    1.70 +   public String getData() {
    1.71 +        return _text;
    1.72 +    }
    1.73 +
    1.74 +    public void setData(String data){
    1.75 +        _text = data;
    1.76 +    }
    1.77 +
    1.78 +    /**
    1.79 +     *
    1.80 +     * @return boolean returns true if the data is CData
    1.81 +     */
    1.82 +    public boolean isCData() {
    1.83 +        return isCData;
    1.84 +    }
    1.85 +
    1.86 +    /**
    1.87 +     *
    1.88 +     * @return String return the String representation of this event.
    1.89 +     */
    1.90 +    public String toString() {
    1.91 +        if(isCData)
    1.92 +            return "<![CDATA[" + _text + "]]>";
    1.93 +        else
    1.94 +            return _text;
    1.95 +    }
    1.96 +
    1.97 +    /**
    1.98 +     * Return true if this is ignorableWhiteSpace.  If
    1.99 +     * this event is ignorableWhiteSpace its event type will
   1.100 +     * be SPACE.
   1.101 +     * @return boolean true if this is ignorableWhiteSpace.
   1.102 +     */
   1.103 +    public boolean isIgnorableWhiteSpace() {
   1.104 +        return isIgnorable;
   1.105 +    }
   1.106 +
   1.107 +    /**
   1.108 +     * Returns true if this set of Characters are all whitespace.  Whitspace inside a document
   1.109 +     * is reported as CHARACTERS.  This method allows checking of CHARACTERS events to see
   1.110 +     * if they are composed of only whitespace characters
   1.111 +     * @return boolean true if this set of Characters are all whitespace
   1.112 +     */
   1.113 +    public boolean isWhiteSpace() {
   1.114 +        //no synchronization checks made.
   1.115 +        if(needtoCheck){
   1.116 +            checkWhiteSpace();
   1.117 +            needtoCheck = false;
   1.118 +        }
   1.119 +        return isSpace;
   1.120 +    }
   1.121 +
   1.122 +    public void setSpace(boolean isSpace) {
   1.123 +        this.isSpace = isSpace;
   1.124 +        needtoCheck = false;
   1.125 +    }
   1.126 +    public void setIgnorable(boolean isIgnorable){
   1.127 +        this.isIgnorable = isIgnorable;
   1.128 +        setEventType(SPACE);
   1.129 +    }
   1.130 +    private void checkWhiteSpace(){
   1.131 +        //refer to xerces XMLChar
   1.132 +        if(!Util.isEmptyString(_text)){
   1.133 +            isSpace = true;
   1.134 +            for(int i=0;i<_text.length();i++){
   1.135 +                if(!XMLChar.isSpace(_text.charAt(i))){
   1.136 +                    isSpace = false;
   1.137 +                    break;
   1.138 +                }
   1.139 +            }
   1.140 +        }
   1.141 +    }
   1.142 +}

mercurial