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

changeset 1606
ccbe7ffdd867
parent 1468
690c41cdab55
child 1858
27bd6a2302f6
equal deleted inserted replaced
1605:94e67bed460d 1606:ccbe7ffdd867
1 /* 1 /*
2 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
379 configuration.getBuilderFactory(). 379 configuration.getBuilderFactory().
380 getFieldBuilder(writer).buildChildren(node, memberDetailsTree); 380 getFieldBuilder(writer).buildChildren(node, memberDetailsTree);
381 } 381 }
382 382
383 /** 383 /**
384 * Build the property documentation.
385 *
386 * @param elements the XML elements that specify how a field is documented.
387 */
388 public void buildPropertyDetails(XMLNode node,
389 Content memberDetailsTree) throws Exception {
390 configuration.getBuilderFactory().
391 getPropertyBuilder(writer).buildChildren(node, memberDetailsTree);
392 }
393
394 /**
384 * Build the constructor documentation. 395 * Build the constructor documentation.
385 * 396 *
386 * @param node the XML element that specifies which components to document 397 * @param node the XML element that specifies which components to document
387 * @param memberDetailsTree the content tree to which the documentation will be added 398 * @param memberDetailsTree the content tree to which the documentation will be added
388 */ 399 */

mercurial