src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/TagletOutput.java

changeset 1743
6a5288a298fd
parent 1359
25e14ad23cef
equal deleted inserted replaced
1742:7af0fa419a2b 1743:6a5288a298fd
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
50 * Append the given output to this output. 50 * Append the given output to this output.
51 * @param o a TagletOutput representing the output. 51 * @param o a TagletOutput representing the output.
52 */ 52 */
53 public abstract void appendOutput(TagletOutput o); 53 public abstract void appendOutput(TagletOutput o);
54 54
55 /** 55 @Override
56 * Return true if this output has any occurances of @inheritDoc. 56 public String toString();
57 * @return true if inheritDoc tag is found.
58 */
59 public abstract boolean hasInheritDocTag();
60 } 57 }

mercurial