public Iterator getAttributeNames(Configuration modeConf, Map objectModel)
throws ConfigurationException {
AntProperties properties = getProperties(objectModel);
SortedSet matchset = new TreeSet();
Enumeration enumeration = properties.keys();
while (enumeration.hasMoreElements()) {
String key = (String) enumeration.nextElement();
matchset.add(key);
}
Iterator iterator = super.getAttributeNames(modeConf, objectModel);