xmlattributesiteratorimpl.java

来自「JAVA 所有包」· Java 代码 · 共 105 行

JAVA
105
字号
/* * The contents of this file are subject to the terms * of the Common Development and Distribution License * (the "License").  You may not use this file except * in compliance with the License. * * You can obtain a copy of the license at * https://jaxp.dev.java.net/CDDLv1.0.html. * See the License for the specific language governing * permissions and limitations under the License. * * When distributing Covered Code, include this CDDL * HEADER in each file and include the License file at * https://jaxp.dev.java.net/CDDLv1.0.html * If applicable add the following below this CDDL HEADER * with the fields enclosed by brackets "[]" replaced with * your own identifying information: Portions Copyright * [year] [name of copyright owner] *//* * $Id: XMLEntityReader.java,v 1.3 2005/11/03 17:02:21 jeffsuttor Exp $ * @(#)XMLAttributesIteratorImpl.java	1.6 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All Rights Reserved. */package com.sun.org.apache.xerces.internal.util;//java importsimport java.util.Iterator ;import java.util.NoSuchElementException;//xerces importsimport com.sun.org.apache.xerces.internal.util.XMLAttributesImpl ;/** * * @author  Neeraj Bajaj, Sun Microsystems *//** * Its better to extend the functionality of existing XMLAttributesImpl and also make it of type Iterator. * We can directly  give an object of type iterator from StartElement event. We should also have * Attribute object of type javax.xml.stream.Attribute internally. It would avoid the need of creating * new javax.xml.stream.Attribute object at the later stage. * * Should we change XMLAttributes interface to implement Iteraotr ? I think its better avoid touching XNI as * much as possible. - NB. */public class XMLAttributesIteratorImpl extends XMLAttributesImpl implements Iterator {        //pointer to current position.    protected int fCurrent = 0 ;        protected XMLAttributesImpl.Attribute fLastReturnedItem ;        /** Creates a new instance of XMLAttributesIteratorImpl */    public XMLAttributesIteratorImpl() {    }        public boolean hasNext() {        return fCurrent < getLength() ? true : false ;    }//hasNext()        public Object next() {        if(hasNext()){            // should this be of type javax.xml.stream.Attribute ?            return fLastReturnedItem = fAttributes[fCurrent++] ;        }        else{            throw new NoSuchElementException() ;        }    }//next        public void remove() {        //make sure that only last returned item can be removed.        if(fLastReturnedItem == fAttributes[fCurrent - 1]){            //remove the attribute at current index and lower the current position by 1.            removeAttributeAt(fCurrent--) ;        }        else {            //either the next method has been called yet, or the remove method has already been called            //after the last call to the next method.            throw new IllegalStateException();        }    }//remove        public void removeAllAttributes() {        super.removeAllAttributes() ;        fCurrent = 0 ;    }    /** xxx: should we be doing this way ? Attribute event defines so many functions which doesn't make any sense     *for Attribute.     *     */    /*    class AttributeImpl extends com.sun.org.apache.xerces.internal.util.XMLAttributesImpl.Attribute implements javax.xml.stream.events.Attribute{         }     */    } //XMLAttributesIteratorImpl

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?