Details
Description
The DocletTag interface exposes the parameters for an entity, but not the namedParameter map:
String[] getParameters();
The interface allows access to the parameters, as long as you know its name:
String getNamedParameter(String key);
It would be useful to expose the namedParameter map in the interface as well so developers that want to abstract qdox don't have to recreate the map themselves:
Map getNamedParameterMap();
Sounds like a good idea to me.
Any objections?