1 22 23 28 29 package org.xquark.util; 30 31 import java.util.Collection ; 32 import java.util.List ; 33 34 public interface NamespaceContext { 35 36 37 public String getNamespaceURI(String prefix); 38 public String getPrefix(String uri); 39 public Collection getNamespaceURIs(); 40 public Collection getPrefixes(); 41 public Collection getPrefixes(String uri); 42 public List getDeclaredPrefixes(); 43 44 } 45 46 | Popular Tags |