annotate src/treecms/proto/util/NodeUtil.java @ 50:a72718a0bccf

added demo tree builder
author shoshi
date Tue, 01 Feb 2011 16:28:49 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
50
a72718a0bccf added demo tree builder
shoshi
parents:
diff changeset
1 package treecms.proto.util;
a72718a0bccf added demo tree builder
shoshi
parents:
diff changeset
2
a72718a0bccf added demo tree builder
shoshi
parents:
diff changeset
3 import treecms.proto.api.Node;
a72718a0bccf added demo tree builder
shoshi
parents:
diff changeset
4
a72718a0bccf added demo tree builder
shoshi
parents:
diff changeset
5 public class NodeUtil
a72718a0bccf added demo tree builder
shoshi
parents:
diff changeset
6 {
a72718a0bccf added demo tree builder
shoshi
parents:
diff changeset
7 public static boolean compareNode(Node node1,Node node2)
a72718a0bccf added demo tree builder
shoshi
parents:
diff changeset
8 {
a72718a0bccf added demo tree builder
shoshi
parents:
diff changeset
9 return true;
a72718a0bccf added demo tree builder
shoshi
parents:
diff changeset
10 }
a72718a0bccf added demo tree builder
shoshi
parents:
diff changeset
11 }