1 package net.sf.saxon.om; 2 3 4 5 10 11 public interface AttributeCollection { 12 13 18 19 int getLength(); 20 21 27 28 int getNameCode(int index); 29 30 31 38 39 int getTypeAnnotation(int index); 40 41 48 49 int getLocationId(int index); 50 51 62 63 String getSystemId(int index); 64 65 76 77 int getLineNumber(int index); 78 79 87 88 int getProperties(int index); 89 90 98 99 String getPrefix(int index); 100 101 108 109 String getQName(int index); 110 111 118 119 String getLocalName(int index); 120 121 128 129 String getURI(int index); 130 131 138 139 int getIndex(String uri, String localname); 140 141 144 145 int getIndexByFingerprint(int fingerprint); 146 147 150 151 String getValueByFingerprint(int fingerprint); 152 153 160 161 public String getValue(String uri, String localname); 162 163 170 171 String getValue(int index); 172 173 176 177 boolean isId(int index); 178 } 179 180 198 | Popular Tags |