src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/AbstractMemberBuilder.java

changeset 589
4177f5bdd189
parent 554
9d9f26857129
child 766
90af8d87741f
equal deleted inserted replaced
588:0ba1f80b73a5 589:4177f5bdd189
25 25
26 package com.sun.tools.doclets.internal.toolkit.builders; 26 package com.sun.tools.doclets.internal.toolkit.builders;
27 27
28 import com.sun.tools.doclets.internal.toolkit.*; 28 import com.sun.tools.doclets.internal.toolkit.*;
29 import com.sun.tools.doclets.internal.toolkit.util.*; 29 import com.sun.tools.doclets.internal.toolkit.util.*;
30 import java.util.*;
31 30
32 /** 31 /**
33 * The superclass for all member builders. Member builders are only executed 32 * The superclass for all member builders. Member builders are only executed
34 * within Class Builders. They essentially build sub-components. For example, 33 * within Class Builders. They essentially build sub-components. For example,
35 * method documentation is a sub-component of class documentation. 34 * method documentation is a sub-component of class documentation.
67 /** 66 /**
68 * Build the sub component if there is anything to document. 67 * Build the sub component if there is anything to document.
69 * 68 *
70 * @param elements {@inheritDoc} 69 * @param elements {@inheritDoc}
71 */ 70 */
72 public void build(List<?> elements) { 71 @Override
72 public void build(XMLNode node) {
73 if (hasMembersToDocument()) { 73 if (hasMembersToDocument()) {
74 super.build(elements); 74 super.build(node);
75 } 75 }
76 } 76 }
77 77
78 /** 78 /**
79 * Return true if this subbuilder has anything to document. 79 * Return true if this subbuilder has anything to document.

mercurial