286N/A/*
286N/A * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
286N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
286N/A *
286N/A * This code is free software; you can redistribute it and/or modify it
286N/A * under the terms of the GNU General Public License version 2 only, as
286N/A * published by the Free Software Foundation. Oracle designates this
286N/A * particular file as subject to the "Classpath" exception as provided
286N/A * by Oracle in the LICENSE file that accompanied this code.
286N/A *
286N/A * This code is distributed in the hope that it will be useful, but WITHOUT
286N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
286N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
286N/A * version 2 for more details (a copy is included in the LICENSE file that
286N/A * accompanied this code).
286N/A *
286N/A * You should have received a copy of the GNU General Public License version
286N/A * 2 along with this work; if not, write to the Free Software Foundation,
286N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
286N/A *
286N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
286N/A * or visit www.oracle.com if you need additional information or have any
286N/A * questions.
286N/A */
286N/A
286N/Apackage com.sun.xml.internal.stream.events;
286N/A
286N/Aimport javax.xml.stream.events.Namespace;
286N/Aimport javax.xml.stream.events.XMLEvent;
286N/Aimport javax.xml.namespace.QName;
286N/A
286N/Aimport javax.xml.XMLConstants;
286N/A/**
286N/A *
286N/A * @author Neeraj Bajaj,K.Venugopal@sun.com Sun Microsystems.
286N/A */
286N/Apublic class NamespaceImpl extends AttributeImpl implements Namespace{
286N/A
286N/A public NamespaceImpl( ) {
286N/A init();
286N/A }
286N/A
286N/A /** Creates a new instance of NamespaceImpl */
286N/A public NamespaceImpl(String namespaceURI) {
286N/A super(XMLConstants.XMLNS_ATTRIBUTE,XMLConstants.XMLNS_ATTRIBUTE_NS_URI,XMLConstants.DEFAULT_NS_PREFIX,namespaceURI,null);
286N/A init();
286N/A }
286N/A
286N/A public NamespaceImpl(String prefix, String namespaceURI){
286N/A super(XMLConstants.XMLNS_ATTRIBUTE,XMLConstants.XMLNS_ATTRIBUTE_NS_URI,prefix,namespaceURI,null);
286N/A init();
286N/A }
286N/A
286N/A public boolean isDefaultNamespaceDeclaration() {
286N/A QName name = this.getName();
286N/A
286N/A if(name != null && (name.getLocalPart().equals(XMLConstants.DEFAULT_NS_PREFIX)))
286N/A return true;
286N/A return false;
286N/A }
286N/A
286N/A void setPrefix(String prefix){
286N/A if(prefix == null)
286N/A setName(new QName(XMLConstants.XMLNS_ATTRIBUTE_NS_URI,XMLConstants.DEFAULT_NS_PREFIX,XMLConstants.XMLNS_ATTRIBUTE));
286N/A else// new QName(uri, localpart, prefix)
286N/A setName(new QName(XMLConstants.XMLNS_ATTRIBUTE_NS_URI,prefix,XMLConstants.XMLNS_ATTRIBUTE));
286N/A }
286N/A
286N/A public String getPrefix() {
286N/A //for a namespace declaration xmlns:prefix="uri" to get the prefix we have to get the
286N/A //local name if this declaration is stored as QName.
286N/A QName name = this.getName();
286N/A if(name != null)
286N/A return name.getLocalPart();
286N/A return null;
286N/A }
286N/A
286N/A public String getNamespaceURI() {
286N/A //we are treating namespace declaration as attribute -- so URI is stored as value
286N/A //xmlns:prefix="Value"
286N/A return this.getValue();
286N/A }
286N/A
286N/A void setNamespaceURI(String uri) {
286N/A //we are treating namespace declaration as attribute -- so URI is stored as value
286N/A //xmlns:prefix="Value"
286N/A this.setValue(uri);
286N/A }
286N/A
286N/A protected void init(){
286N/A setEventType(XMLEvent.NAMESPACE);
286N/A }
286N/A
286N/A public int getEventType(){
286N/A return XMLEvent.NAMESPACE;
286N/A }
286N/A
286N/A public boolean isNamespace(){
286N/A return true;
286N/A }
286N/A}