src/share/classes/com/sun/tools/javadoc/ParamTagImpl.java

changeset 1358
fc123bdeddb8
parent 1053
0d8edba73d70
child 1359
25e14ad23cef
equal deleted inserted replaced
1357:c75be5bc5283 1358:fc123bdeddb8
1 /* 1 /*
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2012, 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
99 /** 99 /**
100 * For the parameter comment with embedded @link tags return the array of 100 * For the parameter comment with embedded @link tags return the array of
101 * TagImpls consisting of SeeTagImpl(s) and text containing TagImpl(s). 101 * TagImpls consisting of SeeTagImpl(s) and text containing TagImpl(s).
102 * 102 *
103 * @return TagImpl[] Array of tags with inline SeeTagImpls. 103 * @return TagImpl[] Array of tags with inline SeeTagImpls.
104 * @see TagImpl#inlineTagImpls() 104 * @see TagImpl#inlineTags()
105 * @see ThrowsTagImpl#inlineTagImpls() 105 * @see ThrowsTagImpl#inlineTags()
106 */ 106 */
107 @Override 107 @Override
108 public Tag[] inlineTags() { 108 public Tag[] inlineTags() {
109 if (inlineTags == null) { 109 if (inlineTags == null) {
110 inlineTags = Comment.getInlineTags(holder, parameterComment); 110 inlineTags = Comment.getInlineTags(holder, parameterComment);

mercurial