1 6 7 package com.hp.hpl.jena.rdf.model.impl; 8 9 import com.hp.hpl.jena.util.iterator.*; 10 import com.hp.hpl.jena.rdf.model.*; 11 12 import java.util.Iterator ; 13 import java.util.NoSuchElementException ; 14 15 20 public class NsIteratorImpl extends WrappedIterator implements NsIterator { 21 22 23 public NsIteratorImpl(Iterator iter, Object o) { 24 super( iter ); 25 } 26 27 public String nextNs() throws NoSuchElementException { 28 return (String ) next(); 29 } 30 31 } 32 33 63 64 | Popular Tags |