for (int i = 0; i < argv.length; i++) {
final SymbolTable symbols = new SymbolTable();
final String expr = argv[i];
final XPath xpath = new XPath(expr, null);
final XPathMatcher matcher = new XPathMatcher(xpath);
matcher.reset(new XMLComponentManager() {
public boolean getFeature(String featureId) throws XMLConfigurationException {
short type = XMLConfigurationException.NOT_SUPPORTED;
throw new XMLConfigurationException(type, featureId);
}
public Object getProperty(String propertyId) throws XMLConfigurationException {