X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjexer%2FTTreeItem.java;h=2770c463bbd026e5893a01ec8e72b153dabdf5ab;hb=daa4106c096cd4d2b92c3cbae6491edccd25fcc4;hp=11a81a7f8c1af6fc014e07d9d292fe96add861d7;hpb=0d47c5460c8e9d1198928308767a63ad35f46eb8;p=fanfix.git diff --git a/src/jexer/TTreeItem.java b/src/jexer/TTreeItem.java index 11a81a7..2770c46 100644 --- a/src/jexer/TTreeItem.java +++ b/src/jexer/TTreeItem.java @@ -1,4 +1,4 @@ -/** +/* * Jexer - Java Text User Interface * * License: LGPLv3 or later @@ -76,7 +76,7 @@ public class TTreeItem extends TWidget { /** * Set the displayable text for this item. * - * @param the displayable text for this item + * @param text the displayable text for this item */ public final void setText(final String text) { this.text = text; @@ -265,10 +265,10 @@ public class TTreeItem extends TWidget { /** * Recursively expand the tree into a linear array of items. * - * @param prefix = vertical bar of parent levels and such that is set on + * @param prefix vertical bar of parent levels and such that is set on * each child - * @param last = if true, this is the "last" leaf node of a tree - * @param additional items to add to the array + * @param last if true, this is the "last" leaf node of a tree + * @return additional items to add to the array */ public List expandTree(final String prefix, final boolean last) { List array = new ArrayList();