Package diva.util

Examples of diva.util.NullIterator


         *   this graph model.
         *  @return An iterator of Arc objects, all of which have
         *   the given node as their tail.
         */
        public Iterator outEdges(Object node) {
            return new NullIterator();
        }
View Full Code Here


         * does not necessarily support removal operations.
         * In this base class, this returns an iterator over
         * nothing.
         */
        public Iterator nodesAfterEdges(Object composite) {
            return (new NullIterator());
        }
View Full Code Here

TOP

Related Classes of diva.util.NullIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.