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();
Activity
Mike Williams
made changes -
Field | Original Value | New Value |
---|---|---|
Assignee | Mike Williams [ mdub ] | |
Fix Version/s | 1.4 [ 10304 ] | |
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(); |
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(); |
Mike Williams
made changes -
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Resolved [ 5 ] |
Mike Williams
made changes -
Status | Resolved [ 5 ] | Closed [ 6 ] |
Sounds like a good idea to me.
Any objections?