Inspector | Message | Severity | Location |
---|---|---|---|
Java Inspector 048 | Copyrights information should be present in each file. | 1 |
1package biz.hammurapi.swing;
2
3import javax.swing.tree.TreeNode;
4
5/**
6 * Classes which know how to display itself in a tree and table implement
7 * this interface.
8 * @author Pavel
9 *
10 */
11public interface Visualizable {
12
13 /**
14 * @param parent
15 * @param title
16 * @param o
17 * @return Tree node for displaying object in browser.
18 */
19 TreeNode toTreeNode(TreeNode parent, String title);
20
21}
22