Skip to content

Commit

Permalink
Resolve PIVOT-626.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pivot/branches/1.5.x@992462 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Gregory K. Brown committed Sep 3, 2010
1 parent b9ab990 commit 79c3233
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions wtk/src/org/apache/pivot/wtk/content/TreeNode.java
Expand Up @@ -30,6 +30,7 @@
public class TreeNode {
private Image icon = null;
private String text = null;
private Object userData = null;

public TreeNode() {
this(null, null);
Expand Down Expand Up @@ -113,4 +114,12 @@ public String getText() {
public void setText(String text) {
this.text = text;
}

public Object getUserData() {
return userData;
}

public void setUserData(Object userData) {
this.userData = userData;
}
}

0 comments on commit 79c3233

Please sign in to comment.