1 6 package org.xml.sax.ext; 7 8 import org.xml.sax.Attributes ; 9 10 11 39 public interface Attributes2 extends Attributes  40 { 41 53 public boolean isDeclared (int index); 54 55 67 public boolean isDeclared (String qName); 68 69 88 public boolean isDeclared (String uri, String localName); 89 90 100 public boolean isSpecified (int index); 101 102 119 public boolean isSpecified (String uri, String localName); 120 121 131 public boolean isSpecified (String qName); 132 } 133 | Popular Tags |