langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/AnnotationTypeOptionalMemberBuilder.java
changeset 1789 7ac8c0815000
parent 1264 076a3cde30d5
child 5520 86e4b9a9da40
equal deleted inserted replaced
1788:ced0a1a7ec80 1789:7ac8c0815000
    93      * Build the member documentation.
    93      * Build the member documentation.
    94      *
    94      *
    95      * @param elements the XML elements that specify how to construct this
    95      * @param elements the XML elements that specify how to construct this
    96      *                documentation.
    96      *                documentation.
    97      */
    97      */
    98     public void buildAnnotationTypeOptionalMember(List elements) {
    98     public void buildAnnotationTypeOptionalMember(List<?> elements) {
    99         if (writer == null) {
    99         if (writer == null) {
   100             return;
   100             return;
   101         }
   101         }
   102         for (currentMemberIndex = 0; currentMemberIndex < members.size();
   102         for (currentMemberIndex = 0; currentMemberIndex < members.size();
   103             currentMemberIndex++) {
   103             currentMemberIndex++) {
   106     }
   106     }
   107 
   107 
   108     /**
   108     /**
   109      * {@inheritDoc}
   109      * {@inheritDoc}
   110      */
   110      */
   111     public void invokeMethod(String methodName, Class[] paramClasses,
   111     public void invokeMethod(String methodName, Class<?>[] paramClasses,
   112             Object[] params)
   112             Object[] params)
   113     throws Exception {
   113     throws Exception {
   114         if (DEBUG) {
   114         if (DEBUG) {
   115             configuration.root.printError("DEBUG: " + this.getClass().getName()
   115             configuration.root.printError("DEBUG: " + this.getClass().getName()
   116                 + "." + methodName);
   116                 + "." + methodName);