(String property)
| 1113 | } |
| 1114 | |
| 1115 | public Object getProperty(String property) { |
| 1116 | if (isProp(property, true, "xmldecl-version")) |
| 1117 | return version; |
| 1118 | if (isProp(property, true, "xmldecl-standalone")) |
| 1119 | return standalone; |
| 1120 | if (isProp(property, true, "location")) |
| 1121 | return location != null ? location : reader.toString(); |
| 1122 | return null; |
| 1123 | } |
| 1124 | |
| 1125 | public int getNamespaceCount(int depth) { |
| 1126 | if (depth > this.depth) |