1 7 package org.xml.sax; 8 9 10 69 public interface Attributes 70 { 71 72 73 77 78 91 public abstract int getLength (); 92 93 94 103 public abstract String getURI (int index); 104 105 106 115 public abstract String getLocalName (int index); 116 117 118 127 public abstract String getQName (int index); 128 129 130 150 public abstract String getType (int index); 151 152 153 166 public abstract String getValue (int index); 167 168 169 170 174 175 184 public int getIndex (String uri, String localName); 185 186 187 194 public int getIndex (String qName); 195 196 197 210 public abstract String getType (String uri, String localName); 211 212 213 224 public abstract String getType (String qName); 225 226 227 239 public abstract String getValue (String uri, String localName); 240 241 242 253 public abstract String getValue (String qName); 254 255 } 256 257 | Popular Tags |