1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.vci.client.uif.engine.client.compare.comparer;
|
| import com.vci.client.uif.engine.client.compare.attribute.Attributes;
| import com.vci.client.uif.engine.client.compare.dialog.treenode.TreeNodeObject;
|
| /**
| * 树节点对象比较器
| * @author VCI-STGK006
| *
| */
| public interface TreeNodeObjectComparer {
|
| /**
| * 比较两个树节点
| *
| * <p>通过调用 TreeNodeObject.setCompareState方法分别设置树节点比较状态</p>
| *
| * @param attributes 属性设置
| * @param lTno 树节点对象
| * @param rTno 树节点对象
| */
| public void compare(Attributes attributes,TreeNodeObject lTno, TreeNodeObject rTno);
| }
|
|