langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/AbstractMemberBuilder.java
changeset 1789 7ac8c0815000
parent 10 06bc494ca11e
child 5520 86e4b9a9da40
equal deleted inserted replaced
1788:ced0a1a7ec80 1789:7ac8c0815000
    67     /**
    67     /**
    68      * Build the sub component if there is anything to document.
    68      * Build the sub component if there is anything to document.
    69      *
    69      *
    70      * @param elements {@inheritDoc}
    70      * @param elements {@inheritDoc}
    71      */
    71      */
    72     public void build(List elements) {
    72     public void build(List<?> elements) {
    73         if (hasMembersToDocument()) {
    73         if (hasMembersToDocument()) {
    74             super.build(elements);
    74             super.build(elements);
    75         }
    75         }
    76     }
    76     }
    77 
    77