* @exception XDocletException Describe the exception
*/
public String indexedConstructorParamValue(Properties attributes) throws XDocletException
{
if (attributes == null)
throw new XDocletException(Translator.getString(XDocletModulesJmxMessages.class, XDocletModulesJmxMessages.MISSING_ATTRIBUTE));
String tagName = attributes.getProperty("tagName");
String paramName = attributes.getProperty("paramName");
if (tagName == null || paramName == null) {
throw new XDocletException(Translator.getString(XDocletModulesJmxMessages.class, XDocletModulesJmxMessages.MISSING_ATTRIBUTE));
}
List tags = Arrays.asList(getCurrentConstructor().getDoc().getTags(tagName).toArray());
XTag tag = (XTag) tags.get(index);