Reintroduced method deleted by mistake.

This commit is contained in:
Simone Bordet 2013-01-10 10:38:22 +01:00
parent 57c5803cd8
commit a5b46fb039
1 changed files with 6 additions and 1 deletions

View File

@ -88,7 +88,12 @@ public class AttributesMap implements Attributes
@Override
public Enumeration<String> getAttributeNames()
{
return Collections.enumeration(keySet());
return Collections.enumeration(getAttributeNameSet());
}
public Set<String> getAttributeNameSet()
{
return keySet();
}
public Set<Map.Entry<String, Object>> getAttributeEntrySet()