*/
public int compareTo(Object object) {
TreeNode that = (TreeNode) object;
- return this.getLabelName().compareTo(that.getLabelName());
+ return this.getLabelName().toLowerCase().compareTo(that.getLabelName().toLowerCase());
}
public String toString() {