田源
2024-03-07 4b4083fd73dc27ece42f4835483565eef0e4f608
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
/*
 * 
 * 
 */
package com.vci.client.omd.versionrule.ui;
 
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.FocusEvent;
import java.awt.event.FocusListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
 
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.JTree;
import javax.swing.ScrollPaneConstants;
import javax.swing.border.EmptyBorder;
import javax.swing.text.BadLocationException;
import javax.swing.text.PlainDocument;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeModel;
import javax.swing.tree.TreeNode;
import javax.swing.tree.TreePath;
 
import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
 
import com.vci.corba.omd.btm.BtmItem;
import com.vci.corba.omd.vrm.VersionRule;
import com.vci.client.omd.lifecycle.ui.LifeCycleWrapper;
import com.vci.client.omd.ui.OmdTreeCellRenderer;
import com.vci.client.omd.versionrule.VRClientStart;
import com.vci.client.omd.versionrule.delegate.VersionRuleClientDelegate;
import com.vci.client.omd.versionrule.itf.InterVer;
import com.vci.client.omd.versionrule.pubimpl.InterVerManager;
import com.vci.client.omd.versionrule.util.VersionRuleWrapper;
import com.vci.client.omd.versionrule.util.XmlUtil;
import com.vci.client.ui.util.PostorderEnumeration;
import com.vci.corba.common.VCIError;
import com.vci.mw.InvocationUtility;
 
@SuppressWarnings("all") 
public class VersionRulePanel extends JPanel{
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    String no1=null,no2=null,no3=null,no4=null,no5=null,no6=null,no7=null;
    private VersionRule versionRule = null;
    //定义文本框,用于用户输入数据
    private JTextField jtf1=new JTextField(40),
            jtf2=new JTextField(40),
            jtf3=new JTextField(40),
            jtf4=new JTextField(40),
            jtf5=new JTextField(40),
            jtf6=new JTextField(40),
            jtf7=new JTextField(40);
    //定义标签,显示文本框的含义
    private JLabel jl1 = new JLabel("名称"),
            jl2 = new JLabel("标签"),
            jl3 = new JLabel("跳跃字符"),
            jl4 = new JLabel("初始值"),
            jl5 = new JLabel("步长"),
            jl6 = new JLabel("前缀"),
            jl7 = new JLabel("后缀"),
            jl8 = new JLabel("描述"),
            jl11 = new JLabel("名称(不能为空)"),
            jl22 = new JLabel("标签(对名称的解释)"),
            jl33 = new JLabel("跳跃字符(以逗号分隔)"),
            jl44 = new JLabel("初始值(不能为空)"),
            jl55 = new JLabel("步长(不能为空)"),
            jl66 = new JLabel("前缀(可以为空)"),
            jl77 = new JLabel("后缀(可以为空)"),
            jl88 = new JLabel("描述(可以为空)");
    private JTextField textField = new JTextField();
    private JButton sel=new JButton("定位");
    //定义文本域,用于书写描述信息
    private JTextArea jta=new JTextArea(3,40);
    //定义容器,用于接收需要布局的容器
    private JPanel jp;
    //定义主容器
    private static VersionRulePanel attribpanel=null;
    //定义按钮
    private JButton addButton = null,modifyButton = null,deleteButton = null,checkButton = null,saveButton = null,
                    cancelButton = null;
    //定义小容器用于界面分区的时候使用
    private JPanel northJPanel = null,westJPanel = new JPanel(),mainJPanel = null,centerJPanel = null,
                   westTopJPanel=null,left=new JPanel();
    //定义滚动条用于存放tree
    private JScrollPane scrollPane = new JScrollPane();
    
    private JScrollPane west_scrollPane = new JScrollPane();
    
    private JScrollPane main_scrollPane = new JScrollPane();
    
    //定义一棵树
    private JTree tree;
    private String nodeName=null,ssss="",associated="";
    private int count=0;
    //定义构造器,首先要执行的方法在这里定义
    private VersionRuleClientDelegate versionRuleClientDelegate = null;
    
    private boolean modifyFlag = false;
    private JButton btnExp;
    private JButton btnImp;
    
    public VersionRulePanel(){
        createTree();
        initUI();
        saveButton.setEnabled(false);
        cancelButton.setEnabled(false);
        addListeneradd();
        addListenermodify();
        addListenerdelete();
        addListenersave();
        addListenercancel();
        addListenner();
        
        btnExp.addActionListener(new ExpActionListener());
        btnImp.addActionListener(new ImpActionListener());
    }
    
    //添加监听器这个监听器是取消按钮的,点击此按钮后界面将会被重置
    private void addListenercancel() {
        cancelButton.addActionListener(new ActionListener(){
            
            public void actionPerformed(ActionEvent e) {
                JOptionPane.showConfirmDialog(null, "您确定要执行取消操作吗?");
                buttonManager();
                buttonManager1();
                mainJPanel.removeAll();
                mainJPanel.updateUI();
            }
        });
        
    }
 
    //保存按钮的监听器,主要任务是讲数据存入XML文件,并且重置界面
    private void addListenersave() {
         saveButton.addActionListener(new ActionListener(){
            public void actionPerformed(ActionEvent e) {
                if((!jtf1.getText().equals(""))&&(!jtf3.getText().equals(""))&&(!jtf4.getText().equals(""))){
                    buttonManager();
                    String name = jtf1.getText();
                    if(!modifyFlag){
                        try {
                            VersionRule vr = VRClientStart.getService().getVersionRule(name);
                            if(!vr.name.equals("")){
                                JOptionPane.showMessageDialog(getThis(), "名称重复请更换名称!", "名称重复", JOptionPane.WARNING_MESSAGE);
                                return;
                            }
                            VersionRule newVR = new VersionRule();
                            newVR.name = jtf1.getText();
                            newVR.tag = jtf7.getText();
                            newVR.jumpCharacter = jtf2.getText();
                            newVR.initialValue = jtf3.getText();
                            newVR.stepLength = jtf4.getText();
                            newVR.prefixion = jtf5.getText();
                            newVR.suffix = jtf6.getText();
                            newVR.description = jta.getText();
                            String userName = InvocationUtility.getInvocation().userName;
                            newVR.creator = userName;
                            newVR.modifier = userName;
                            if(VRClientStart.getService().addVersionRule(newVR)){
                                JOptionPane.showMessageDialog(getThis(), "保存成功!", "保存成功", JOptionPane.INFORMATION_MESSAGE);
                            }else{
                                JOptionPane.showMessageDialog(getThis(), "保存失败!", "保存失败", JOptionPane.ERROR_MESSAGE);
                                return;
                            }
                        } catch (VCIError e1) {
                            e1.printStackTrace();
                        }    
                    }else{
                        VersionRule seletedVR = treeSelection();
                        if(seletedVR != null){
                            seletedVR.tag = jtf7.getText();
                            seletedVR.jumpCharacter = jtf2.getText();
                            seletedVR.initialValue = jtf3.getText();
                            seletedVR.stepLength = jtf4.getText();
                            seletedVR.prefixion = jtf5.getText();
                            seletedVR.suffix = jtf6.getText();
                            seletedVR.description = jta.getText();
                            String userName = InvocationUtility.getInvocation().userName;
                            seletedVR.modifier = userName;
                            
                            try{
                                if(VRClientStart.getService().modifyVersionRule(seletedVR)){
                                    JOptionPane.showMessageDialog(getThis(), "保存成功!", "保存成功", JOptionPane.INFORMATION_MESSAGE);
                                }else{
                                    JOptionPane.showMessageDialog(getThis(), "保存失败!", "保存失败", JOptionPane.ERROR_MESSAGE);
                                    return;
                                }
                            } catch (VCIError e1) {
                                e1.printStackTrace();
                            }
                        }else{
                            JOptionPane.showMessageDialog(getThis(), "请选择版本规则!", "请选择版本规则", JOptionPane.ERROR_MESSAGE);
                            return;
                        }
                    }
                    createTree();
                    westJPanel.add(scrollPane,BorderLayout.CENTER);
                    westJPanel.updateUI();
                    buttonManager1();
                    mainJPanel.removeAll();
                    mainJPanel.updateUI();
                }else{
                    if((jtf1.getText().equals(""))||(jtf2.getText().equals(""))||(jtf4.getText().equals(""))){
                        JOptionPane.showMessageDialog(null,"请检查输入的数据,将数据补充完整!");
                        return;
                    }
                    
                }
            }
        });
    }
    
    //修改按钮的监听器,主要任务是提示操作人员是否执行修改操作并且将修改后的数据存入XML文件和重置界面
    private void addListenermodify(){
        final Map<String,String> map1 = new HashMap<String,String>();
        modifyButton.addActionListener(new ActionListener(){
            public void actionPerformed(ActionEvent e) {
                JOptionPane.showConfirmDialog(null, "您确定要执行修改操作吗?");
                if(mainJPanel == null){
                    return;
                }
                modifyFlag = true;
                VersionRule versionRule = treeSelection();
                
                ArrayList<InterVer> interVerList = InterVerManager.getInstance().getInterVerList();
                if(interVerList ==null || interVerList.size()==0){
                    jtf1.setEditable(true);
                }else {
                    
                    for(Iterator i = interVerList.iterator(); i.hasNext();){
                        InterVer interVer = (InterVer) i.next();
                        ArrayList<String> usedNameList = interVer.getUsedNameList(versionRule.name);
                        //add by caill start 2016.1.14 当版本被引用后,只能修改标签和描述;没被引用的版本除了名称外,都可以被修改
                        if(usedNameList!=null && usedNameList.size()>0){
                            jtf2.setEditable(false);
                            jtf3.setEditable(false);
                            jtf4.setEditable(false);
                            jtf5.setEditable(false);
                            jtf6.setEditable(false);
                        }else {
                            jtf2.setEditable(true);
                            jtf3.setEditable(true);
                            jtf4.setEditable(true);
                            jtf5.setEditable(true);
                            jtf6.setEditable(true);        
                        }
                    }
                    
                }
                jtf1.setEditable(false);                
                jtf7.setEditable(true);
                jta.setEditable(true);
                //add by caill end
                addButton.setEnabled(false);
                modifyButton.setEnabled(false);
                deleteButton.setEnabled(false);
                checkButton.setEnabled(false);
                tree.setEnabled(false);
                mainJPanel.removeAll();
                mainJPanel.add(addVersionrule1(versionRule),BorderLayout.CENTER);
                mainJPanel.updateUI();
                saveButton.setEnabled(true);
                cancelButton.setEnabled(true);
            }
        });
    }
    
    
    //删除按钮的监听器,主要任务是将要删除的项在XML文件中删除并且重置界面
    private void addListenerdelete(){
        deleteButton.addActionListener(new ActionListener(){
            @Override
            public void actionPerformed(ActionEvent arg0) {
                DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode) tree.getLastSelectedPathComponent();
                if(selectedNode!=null && selectedNode.isLeaf()){
                    Object[] options = { "Yes", "No" };
                    int n = JOptionPane
                            .showOptionDialog(getInstance(), "确认是否删除版本规则\""
                                    + selectedNode.toString() + "\"", "版本规则删除",
                                    JOptionPane.YES_NO_OPTION,
                                    JOptionPane.QUESTION_MESSAGE, null, options,
                                    options[1]);
        //            int n = JOptionPane.showConfirmDialog(null, "您确定要执行删除操作吗?");
                    if(n != JOptionPane.YES_OPTION){
                        return;
                    }                    
                    nodeName=selectedNode.toString();
                    try {
                        ArrayList<InterVer> interVerList = InterVerManager.getInstance().getInterVerList();
                        for(Iterator i = interVerList.iterator(); i.hasNext();){
                            InterVer interVer = (InterVer) i.next();
                            ArrayList<String> usedNameList = interVer.getUsedNameList(nodeName);
                            if(usedNameList!=null && usedNameList.size()>0){
                                JOptionPane.showMessageDialog(null,"该版本已被使用不允许删除");
                                return;
                            }
                        }
                        
                        VersionRule seletedVR = treeSelection();
                        if(seletedVR != null){
                            try{
                                if(VRClientStart.getService().deleteVersionRule(seletedVR)){
                                    JOptionPane.showMessageDialog(getThis(), "删除成功!", "删除成功", JOptionPane.INFORMATION_MESSAGE);
                                }else{
                                    JOptionPane.showMessageDialog(getThis(), "删除失败!", "删除失败", JOptionPane.ERROR_MESSAGE);
                                    return;
                                }
                            } catch (VCIError e1) {
                                e1.printStackTrace();
                            }
                        }else{
                            JOptionPane.showMessageDialog(getThis(), "请选择版本规则!", "请选择版本规则", JOptionPane.ERROR_MESSAGE);
                            return;
                        }
                    } catch (Exception e) {
                        e.printStackTrace();
                    } 
                    createTree();
                    scrollPane.setViewportView(tree);
                    westJPanel.add(scrollPane,BorderLayout.CENTER);
                    westJPanel.updateUI();
                    buttonManager();
                    buttonManager1();
                    mainJPanel.removeAll();
                    mainJPanel.updateUI();
                    createTree();
                    westJPanel.updateUI();
                    centerJPanel.updateUI();
                }else{
                    JOptionPane.showMessageDialog(null,"请先选中要删除的项");
                }
            }
            
        });
    }
    
    public static void cleanInstance(){
        attribpanel = null;
    }
    
    //此方法是一个静态方法,初始化的时候判断主容器是否存在,存在则继续执行,不存在则新建容器
     public static VersionRulePanel  getInstance(){
        if(attribpanel == null){
            attribpanel = new VersionRulePanel();
        }
        return attribpanel;
    }
 
     //此方法主要是树节点被选择后要执行的操作,从XML文件中获取被选中项的数据并并且存入map集合中,让下面的方法使用
    public VersionRule treeSelection(){
        try {
            jtf1.setEditable(false);
            jtf2.setEditable(false);
            jtf3.setEditable(false);
            jtf4.setEditable(false);
            jtf5.setEditable(false);
            jtf6.setEditable(false);
            jtf7.setEditable(false);
            jta.setEditable(false);
            Document doc = null;
            DefaultMutableTreeNode node=(DefaultMutableTreeNode)tree.getLastSelectedPathComponent();
            if(node != null && node.getUserObject() instanceof VersionRuleWrapper){
                VersionRuleWrapper vrWrapper = (VersionRuleWrapper)node.getUserObject();
                return vrWrapper.getVR();
            }
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return null;
    }
    
    //这个方法是初始化并且为树添加监听器
    public void createTree(){
        DefaultMutableTreeNode node1 = new DefaultMutableTreeNode("版本规则");
        try {
            String versionrulename="";
            VersionRule[] vrs = VRClientStart.getService().getVersionRules();
            for(VersionRule vr : vrs){
                DefaultMutableTreeNode node = new DefaultMutableTreeNode(new VersionRuleWrapper(vr));
                node1.add(node);
            }
        } catch (Exception e) {
            e.printStackTrace();
        
        }
        
        tree = new JTree(node1);
        tree.setCellRenderer(new OmdTreeCellRenderer());
        scrollPane.setViewportView(tree);
        tree.addMouseListener(new MouseAdapter() {
            public void mouseClicked(MouseEvent mouseevent) {
                VersionRule versionRule = treeSelection();
                westJPanel.removeAll();
                westJPanel.add(scrollPane);
                westJPanel.updateUI();
                mainJPanel.removeAll();
                if(versionRule!=null){
                    mainJPanel.add(addVersionrule1(versionRule),BorderLayout.CENTER);
                }
                mainJPanel.updateUI();
                
            }
        });
    }
    
    //主界面的可视化方法,主要是定义界面的布局,不提供具体的功能
    private void initUI() {
        
        setBackground(Color.WHITE);
        setLayout(new BorderLayout(0,0));
        //northPanel
        northJPanel = new JPanel();
        FlowLayout fl = (FlowLayout) northJPanel.getLayout();
        fl.setAlignment(FlowLayout.CENTER);
        JScrollPane northJScrollPane = new JScrollPane();
        northJScrollPane.setViewportView(northJPanel);
        this.add(northJPanel,BorderLayout.PAGE_START);
        
        addButton = new JButton("创建");
        modifyButton = new JButton("修改");
        deleteButton = new JButton("删除");
        checkButton = new JButton("查看使用范围");
        saveButton = new JButton("保存");
        cancelButton = new JButton("取消");
        btnExp = new JButton("导出");
        btnImp = new JButton("导入");
        
        northJPanel.add(addButton);
        northJPanel.add(modifyButton);
        northJPanel.add(deleteButton);
        northJPanel.add(checkButton);
        northJPanel.add(saveButton);
        northJPanel.add(cancelButton);
        northJPanel.add(btnExp);
        northJPanel.add(btnImp);
        
        //leftPanel
        centerJPanel = new JPanel();
//        FlowLayout fl1 = (FlowLayout) centerJPanel.getLayout();
//        fl1.setAlignment(FlowLayout.LEFT);
        
        centerJPanel.setLayout(new GridBagLayout());
        
        westJPanel.setBorder(new EmptyBorder(5,5,0,5));
        westJPanel.setAutoscrolls(true);
        GridBagConstraints gbc= new GridBagConstraints();
        gbc.gridx=0;
        gbc.gridy=0;
        gbc.weightx=1.0;
        gbc.weighty=1.0;
        gbc.fill=GridBagConstraints.BOTH;
        //centerJPanel.add(westJPanel,gbc);
        centerJPanel.add(left,gbc);
        //westJPanel.setPreferredSize(new Dimension(centerJPanel.getSize().width/4,centerJPanel.getSize().height));
        
        //add by caill start
        
        //搜索框的设置
        GridBagConstraints gb = new GridBagConstraints();
        gb.gridx = 0;
        gb.gridy = 0;
        gb.weightx = 0.7;
        gb.weighty = 0;
        gb.fill = GridBagConstraints.HORIZONTAL;
        westTopJPanel=new JPanel();
        westTopJPanel.setLayout(new GridBagLayout());
        westTopJPanel.add(textField,gb);
        westTopJPanel.add(sel);
        //为定位按钮增加点击事件
        sel.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                //e.getSource();
                String test = textField.getText().trim();
                DefaultTreeModel model = (DefaultTreeModel)tree.getModel();
                model.reload();
                TreeNode root = (TreeNode) model.getRoot();
                PostorderEnumeration enumeration = new PostorderEnumeration(
                        root);
                while (enumeration.hasMoreElements()) {
                    DefaultMutableTreeNode element = (DefaultMutableTreeNode) enumeration
                            .nextElement();
                    if (element.getUserObject() instanceof VersionRuleWrapper) {
                        VersionRuleWrapper wrapper = (VersionRuleWrapper) element
                                .getUserObject();
 
                        if (wrapper != null && wrapper.getVR() != null
                                && wrapper.getVR().name.equals(test)) {
                            TreeNode[] path = element.getPath();
                            TreePath treePath = new TreePath(path);
                            tree.setSelectionPath(treePath);
                            return;
                        }
                        ;
                    }
                }
                if (test.equals("")) {
                    JOptionPane.showMessageDialog(
                            com.vci.client.LogonApplication.frame,
                            "请输入版本规则", "提示", JOptionPane.INFORMATION_MESSAGE);
                } else {
                    JOptionPane.showMessageDialog(
                            com.vci.client.LogonApplication.frame,
                            "{ " + test + " }版本规则不存在", "提示",
                            JOptionPane.INFORMATION_MESSAGE);
                }
 
            }
 
        });
        //为定位框添加事件
        textField.addActionListener(new ActionListener() {
 
            @Override
            public void actionPerformed(ActionEvent e) {
                
                JTextField text = (JTextField) e.getSource();
                String test = text.getText().trim();
                DefaultTreeModel model = (DefaultTreeModel)tree.getModel();
                model.reload();    
                TreeNode root = (TreeNode) model.getRoot();
                PostorderEnumeration enumeration = new PostorderEnumeration(
                        root);
                
                while (enumeration.hasMoreElements()) {
                    DefaultMutableTreeNode element = (DefaultMutableTreeNode) enumeration
                            .nextElement();
                    if (element.getUserObject() instanceof VersionRuleWrapper) {
                        VersionRuleWrapper wrapper = (VersionRuleWrapper) element
                                .getUserObject();
 
                        if (wrapper != null && wrapper.getVR() != null
                                && wrapper.getVR().name.equals(test)) {
                            TreeNode[] path = element.getPath();
                            TreePath treePath = new TreePath(path);
                            tree.setSelectionPath(treePath);
                            return;
                        }
                        ;
                    }
                }
                if (test.equals("")) {
                    JOptionPane.showMessageDialog(
                            com.vci.client.LogonApplication.frame,
                            "请输入版本规则", "提示", JOptionPane.INFORMATION_MESSAGE);
                } else {
                    JOptionPane.showMessageDialog(
                            com.vci.client.LogonApplication.frame,
                            "{ " + test + " }版本规则不存在", "提示",
                            JOptionPane.INFORMATION_MESSAGE);
                }
 
            }
 
        });
 
        westJPanel.setLayout(new BorderLayout(5,5));
        //westJPanel.add(westTopJPanel,BorderLayout.NORTH);
        westJPanel.add(scrollPane,BorderLayout.CENTER);
        //新增了left和westTopJPanel容器,将搜索框和定位按钮放入到westTopJPanel中,再将westTopJPanel和westJPanel放入到left中
        left.setLayout(new BorderLayout(5,5));
        left.add(westTopJPanel,BorderLayout.NORTH);
        left.add(westJPanel,BorderLayout.CENTER);
        //add by caill end    
        
        //mainJPanel位于右侧
        mainJPanel = new JPanel();
        //mainJPanel.setPreferredSize(new Dimension(centerJPanel.getSize().width/5*4,centerJPanel.getSize().height));
        gbc.gridx=1;
        gbc.weightx=4.0;
        JScrollPane mainsJScrollPane = new JScrollPane();
        
        mainJPanel.setLayout(new BorderLayout(5,5));
        
        mainsJScrollPane.setViewportView(mainJPanel);
        centerJPanel.add(mainsJScrollPane,gbc);
        
        
        JScrollPane scrollPane_center = new JScrollPane();
        scrollPane_center.setViewportView(centerJPanel);
//        scrollPane_center.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
//        scrollPane_center.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
        this.add(scrollPane_center, BorderLayout.CENTER);
    }
    
    //为新建按钮添加监听器,新建结束后更新界面上需要更新的内容
    private void addListeneradd() {
        addButton.addActionListener(new ActionListener(){
            public void actionPerformed(ActionEvent e) {
                if(mainJPanel == null){
                    return;
                }
                modifyFlag = false;
                jtf1.setEditable(true);
                jtf2.setEditable(true);
                jtf3.setEditable(true);
                jtf4.setEditable(true);
                jtf5.setEditable(true);
                jtf6.setEditable(true);
                jtf7.setEditable(true);
                jta.setEditable(true);
                addButton.setEnabled(false);
                modifyButton.setEnabled(false);
                deleteButton.setEnabled(false);
                checkButton.setEnabled(false);
                tree.setEnabled(false);
                mainJPanel.removeAll();
                mainJPanel.add(addVerpanel(),BorderLayout.CENTER);
                mainJPanel.updateUI();
                saveButton.setEnabled(true);
                cancelButton.setEnabled(true);
            }
        });
    }
    
    public JPanel addVerpanel(){
        jp = new JPanel();
        jp.setBackground(Color.WHITE);
        jp.setLayout(new BorderLayout(0, 0));
        jp.setBorder(BorderFactory.createTitledBorder(nodeName));
        
        setBackground(Color.WHITE);
        setLayout(new BorderLayout(0, 0));
        jp.setLayout(new GridBagLayout());
        GridBagConstraints g = new GridBagConstraints();
        //g.anchor = GridBagConstraints.EAST;
        g.insets = new Insets(15, 10, 5, 10);    //add by caill 2016.1.14将控件间距拉大
        g.gridx = 0;
        g.gridy = 0;
        g.anchor = GridBagConstraints.WEST;    //add by caill 2016.1.14 将第一列控件设置为左对齐
        jp.add(jl11, g);
        jtf1.setText("");
        GridBagConstraints g1 = new GridBagConstraints();
        g1.insets = new Insets(15, 10, 5, 10);    //add by caill 2016.1.14将控件间距拉大
        g1.gridx = 1;
        g1.gridy = 0;
        jtf1.updateUI();
        jp.add(jtf1, g1);
        
        g.gridx = 0;
        g.gridy = 1;
        jp.add(jl22,g);
        g.gridx = 1;
        g.gridy = 1;
        jtf7.setText("");
        //System.out.println(map.get(jl2.getText()));
        jp.add(jtf7,g);
        
        g.gridx = 0;
        g.gridy = 2;
        jp.add(jl33,g);
        g.gridx = 1;
        g.gridy = 2;
        jtf2.setText("");
        jp.add(jtf2,g);
        
        g.gridx = 0;
        g.gridy = 3;
        jp.add(jl44,g);
        g.gridx = 1;
        g.gridy = 3;
        jtf3.setText("");
        jp.add(jtf3,g);
        
        g.gridx = 0;
        g.gridy = 4;
        jp.add(jl55,g);
        g.gridx = 1;
        g.gridy = 4;
        jtf4.setText("");
        jp.add(jtf4,g);
        
        g.gridx = 0;
        g.gridy = 5;
        jp.add(jl66,g);
        g.gridx = 1;
        g.gridy = 5;
        jtf5.setText("");
        jp.add(jtf5,g);
        
        g.gridx = 0;
        g.gridy = 6;
        jp.add(jl77,g);
        g.gridx = 1;
        g.gridy = 6;
        jtf6.setText("");
        jp.add(jtf6,g);
        
        g.gridx = 0;
        g.gridy = 7;
        jp.add(jl88, g);
        jta.setText("");
        jta.setLineWrap(true);
        g1.gridx = 1;
        g1.gridy = 7;
        jp.add(new JScrollPane(jta),g1);
        //校验
        jtf1.addFocusListener(new FocusListener() {
            String regex="[a-z A-Z]*";
            public void focusLost(FocusEvent e) {
                if(jtf1.getText().equals("")||(!jtf1.getText().matches(regex))){
                    JOptionPane.showMessageDialog(null,jl11.getText().substring(0, 2)+"不能为空且只能为英文");
                    jtf1.setText("");
                    jtf1.requestDefaultFocus();
                }
            }
            @Override
            public void focusGained(FocusEvent e) {
                 
            }
        });
        
        jtf2.addFocusListener(new FocusListener() {
            String regex = "[A-Za-z0-9]+$";
            @Override
            public void focusLost(FocusEvent e) {
                if((!jtf2.getText().equals(""))&&(!(jtf2.getText().matches(regex)))){
                    JOptionPane.showMessageDialog(null,jl33.getText().substring(0, 4)+"只能为数字或者字母");
                    jtf2.requestDefaultFocus();
                    jtf2.setText("");
                }
            }
            
            @Override
            public void focusGained(FocusEvent e) {
                // TODO Auto-generated method stub
                
            }
        });
        
        jtf3.addFocusListener(new FocusListener() {
            String regex = "[A-Za-z0-9!@#$%^&*()-_=+{}':|;,.?/]+$";
            @Override
            public void focusLost(FocusEvent e) {
                if(jtf3.getText().equals("")||(!(jtf3.getText().matches(regex)))){
                    JOptionPane.showMessageDialog(null,jl44.getText().substring(0, 3)+"不能为空且只能为数字或者字母或英文状态下的符号");
                    jtf3.setText("");
                    jtf3.requestDefaultFocus();
                }
            }
            
            @Override
            public void focusGained(FocusEvent e) {
                
            }
        });
        
        jtf3.setDocument(new PlainDocument(){
            public void insertString(int offs, String str,javax.swing.text.AttributeSet a) throws BadLocationException { 
                 String text = jtf1.getText();
                 if (text.length() + str.length() > 32) {
                     Toolkit.getDefaultToolkit().beep();   
                     JOptionPane.showMessageDialog(null, "初始值不能超过32个字符"); 
                     return;
                 }
                 super.insertString(offs, str, a);   
             }
        });
        
        jtf4.addFocusListener(new FocusListener() {
            String regex = "[1-9]";
            @Override
            public void focusLost(FocusEvent e) {
                if(jtf4.getText().equals("")||(!jtf4.getText().matches(regex))){
                    JOptionPane.showMessageDialog(null,jl55.getText().substring(0, 2)+"不能为空且必须为1-9的正整数");
                    jtf4.setText("");
                    jtf4.requestDefaultFocus();
                }
            }
            @Override
            public void focusGained(FocusEvent e) {
                
            }
        });
        
        jtf5.addFocusListener(new FocusListener() {
            @Override
            public void focusLost(FocusEvent focusevent) {
                String regex="^\\s+.*";
                if((jtf5.getText().matches(regex))){
                    JOptionPane.showMessageDialog(null, "前缀不能以空格开头");
                    jtf5.setText("");
                    jtf5.requestDefaultFocus();
                }
            }
            
            @Override
            public void focusGained(FocusEvent focusevent) {
                
            }
        });
        
        jtf5.setDocument(new PlainDocument(){
            public void insertString(int offs, String str,javax.swing.text.AttributeSet a) throws BadLocationException { 
                 String text = jtf1.getText();
                 if (text.length() + str.length() > 32) {
                     Toolkit.getDefaultToolkit().beep();   
                     JOptionPane.showMessageDialog(null, "前缀不能超过32个字符"); 
                     return;
                 }
                 super.insertString(offs, str, a);   
             }
        });
        
        
        jtf6.addFocusListener(new FocusListener() {
            @Override
            public void focusLost(FocusEvent focusevent) {
                String regex="^*.\\s+$";
                if((jtf6.getText().matches(regex))){
                    JOptionPane.showMessageDialog(null, "后缀不能以空格结尾");
                    jtf6.setText("");
                    jtf6.requestDefaultFocus();
                }
            }
            
            @Override
            public void focusGained(FocusEvent focusevent) {
                
            }
        });
        
        jtf6.setDocument(new PlainDocument(){
            public void insertString(int offs, String str,javax.swing.text.AttributeSet a) throws BadLocationException { 
                 String text = jtf1.getText();
                 if (text.length() + str.length() > 32) {
                     Toolkit.getDefaultToolkit().beep();   
                     JOptionPane.showMessageDialog(null, "后缀不能超过32个字符"); 
                     return;
                 }
                 super.insertString(offs, str, a);   
             }
        });
        
        jta.setDocument(new PlainDocument(){
            public void insertString(int offs, String str,javax.swing.text.AttributeSet a) throws BadLocationException { 
                 String text = jta.getText();
                 if (text.length() + str.length() > 255) {
                     Toolkit.getDefaultToolkit().beep();   
                     JOptionPane.showMessageDialog(null, "名称不能超过255个字符"); 
                     return;
                 }
                 super.insertString(offs, str, a);   
             }
        });
        
        
        
        
        return jp;
    
    }
    
    
    
    //点击新建按钮后要显示的界面
//     public JPanel addVerpanel(){
//             flag = false;
//             jtf1.setText("");
//             jtf7.setText("");
//             jtf2.setText("");
//             jtf3.setText("");
//             jtf4.setText("");
//             jtf5.setText("");
//             jtf6.setText("");
//             jta.setText("");
//            JPanel jp = new JPanel();
//            jp.setBackground(Color.WHITE);
//            jp.setLayout(new BorderLayout(0, 0));
//            jp.setBorder(BorderFactory.createTitledBorder("创建版本号规则:"));
//            jp.setLayout(new GridBagLayout());
//            GridBagConstraints g = new GridBagConstraints();
//            g.anchor = GridBagConstraints.EAST;
//            g.insets = new Insets(10, 5, 0, 5);
//            g.gridx = 0;
//            g.gridy = 0;
//            jp.add(jl11, g);
//            GridBagConstraints g1 = new GridBagConstraints();
//            g1.insets = new Insets(10, 5, 0, 5);
//            g1.gridx = 1;
//            g1.gridy = 0;
//            jp.add(jtf1, g1);
//            jtf1.addFocusListener(new FocusListener() {
//                String regex="[a-z A-Z]*";
//                public void focusLost(FocusEvent e) {
//                    if(jtf1.getText().equals("")||(!jtf1.getText().matches(regex))){
//                        JOptionPane.showMessageDialog(null,jl11.getText().substring(0, 2)+"不能为空且只能为英文");
//                        jtf1.setText("");
//                        jtf1.requestDefaultFocus();
//                    }
//                }
//                @Override
//                public void focusGained(FocusEvent e) {
//                     
//                }
//            });
//            
//            //限定文本框的有效输入长度为50
//            jtf1.setDocument(new PlainDocument(){
//                public void insertString(int offs, String str,javax.swing.text.AttributeSet a) throws BadLocationException { 
//                     String text = jtf1.getText();
//                     if (text.length() + str.length() > 50) {
//                         Toolkit.getDefaultToolkit().beep();   
//                         JOptionPane.showMessageDialog(null, "名称不能超过50个字符"); 
//                         return;
//                     }
//                     super.insertString(offs, str, a);   
//                 }
//            });
//            
//            g.gridx = 0;
//            g.gridy = 1;
//            jp.add(jl22,g);
//            g.gridx = 1;
//            g.gridy = 1;
//            jp.add(jtf7,g);
//            
//            g.gridx = 0;
//            g.gridy = 2;
//            jp.add(jl33,g);
//            g.gridx = 1;
//            g.gridy = 2;
//            jp.add(jtf2,g);
//            jtf2.addFocusListener(new FocusListener() {
//                String regex = "[A-Za-z0-9]+$";
//                @Override
//                public void focusLost(FocusEvent e) {
//                    if((!jtf2.getText().equals(""))&&(!(jtf2.getText().matches(regex)))){
//                        JOptionPane.showMessageDialog(null,jl33.getText().substring(0, 4)+"只能为数字或者字母");
//                        jtf2.requestDefaultFocus();
//                        jtf2.setText("");
//                    }
//                }
//                
//                @Override
//                public void focusGained(FocusEvent e) {
//                    // TODO Auto-generated method stub
//                    
//                }
//            });
//            
//            g.gridx = 0;
//            g.gridy = 6;
//            jp.add(jl44,g);
//            g.gridx = 1;
//            g.gridy = 6;
//            jp.add(jtf3,g);
//            jtf3.addFocusListener(new FocusListener() {
//                String regex = "[A-Za-z0-9!@#$%^&*()-_=+{}':|;,.?/]+$";
//                @Override
//                public void focusLost(FocusEvent e) {
//                    if(jtf3.getText().equals("")||(!(jtf3.getText().matches(regex)))){
//                        JOptionPane.showMessageDialog(null,jl44.getText().substring(0, 3)+"不能为空且只能为数字或者字母或英文状态下的符号");
//                        jtf3.setText("");
//                        jtf3.requestDefaultFocus();
//                    }
//                }
//                
//                @Override
//                public void focusGained(FocusEvent e) {
//                    
//                }
//            });
//            
//            jtf3.setDocument(new PlainDocument(){
//                public void insertString(int offs, String str,javax.swing.text.AttributeSet a) throws BadLocationException { 
//                     String text = jtf1.getText();
//                     if (text.length() + str.length() > 32) {
//                         Toolkit.getDefaultToolkit().beep();   
//                         JOptionPane.showMessageDialog(null, "初始值不能超过32个字符"); 
//                         return;
//                     }
//                     super.insertString(offs, str, a);   
//                 }
//            });
//            
//            g.gridx = 0;
//            g.gridy = 4;
//            jp.add(jl55,g);
//            g.gridx = 1;
//            g.gridy = 4;
//            jtf4.setText("1");
//            jp.add(jtf4,g);
//            jtf4.addFocusListener(new FocusListener() {
//                String regex = "[1-9]";
//                @Override
//                public void focusLost(FocusEvent e) {
//                    if(jtf4.getText().equals("")||(!jtf4.getText().matches(regex))){
//                        JOptionPane.showMessageDialog(null,jl55.getText().substring(0, 2)+"不能为空且必须为1-9的正整数");
//                        jtf4.setText("");
//                        jtf4.requestDefaultFocus();
//                    }
//                }
//                @Override
//                public void focusGained(FocusEvent e) {
//                    
//                }
//            });
//            
//            g.gridx = 0;
//            g.gridy = 3;
//            jp.add(jl66,g);
//            g.gridx = 1;
//            g.gridy = 3;
//            jp.add(jtf5,g);
//            jtf5.addFocusListener(new FocusListener() {
//                @Override
//                public void focusLost(FocusEvent focusevent) {
//                    String regex="^\\s+.*";
//                    if((jtf5.getText().matches(regex))){
//                        JOptionPane.showMessageDialog(null, "前缀不能以空格开头");
//                        jtf5.setText("");
//                        jtf5.requestDefaultFocus();
//                    }
//                }
//                
//                @Override
//                public void focusGained(FocusEvent focusevent) {
//                    
//                }
//            });
//            
//            jtf5.setDocument(new PlainDocument(){
//                public void insertString(int offs, String str,javax.swing.text.AttributeSet a) throws BadLocationException { 
//                     String text = jtf1.getText();
//                     if (text.length() + str.length() > 32) {
//                         Toolkit.getDefaultToolkit().beep();   
//                         JOptionPane.showMessageDialog(null, "前缀不能超过32个字符"); 
//                         return;
//                     }
//                     super.insertString(offs, str, a);   
//                 }
//            });
//            
//            g.gridx = 0;
//            g.gridy = 5;
//            jp.add(jl77,g);
//            g.gridx = 1;
//            g.gridy = 5;
//            jp.add(jtf6,g);
//            jtf6.addFocusListener(new FocusListener() {
//                @Override
//                public void focusLost(FocusEvent focusevent) {
//                    String regex="^*.\\s+$";
//                    if((jtf6.getText().matches(regex))){
//                        JOptionPane.showMessageDialog(null, "后缀不能以空格结尾");
//                        jtf6.setText("");
//                        jtf6.requestDefaultFocus();
//                    }
//                }
//                
//                @Override
//                public void focusGained(FocusEvent focusevent) {
//                    
//                }
//            });
//            
//            jtf6.setDocument(new PlainDocument(){
//                public void insertString(int offs, String str,javax.swing.text.AttributeSet a) throws BadLocationException { 
//                     String text = jtf1.getText();
//                     if (text.length() + str.length() > 32) {
//                         Toolkit.getDefaultToolkit().beep();   
//                         JOptionPane.showMessageDialog(null, "后缀不能超过32个字符"); 
//                         return;
//                     }
//                     super.insertString(offs, str, a);   
//                 }
//            });
//            
//            g.gridx = 0;
//            g.gridy = 7;
//            jp.add(jl88, g);
//            jta.setLineWrap(true);
//            g1.gridx = 1;
//            g1.gridy = 7;
//            jp.add(new JScrollPane(jta),g1);
//            jta.setDocument(new PlainDocument(){
//                public void insertString(int offs, String str,javax.swing.text.AttributeSet a) throws BadLocationException { 
//                     String text = jta.getText();
//                     if (text.length() + str.length() > 255) {
//                         Toolkit.getDefaultToolkit().beep();   
//                         JOptionPane.showMessageDialog(null, "名称不能超过255个字符"); 
//                         return;
//                     }
//                     super.insertString(offs, str, a);   
//                 }
//            });
//        return jp;
//    }
    
    //点击树节点的时候要显示的界面,由于此界面与新建界面有区别所以没有用同一个界面
    public JPanel addVersionrule1(VersionRule versionRule){
        DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode) tree.getLastSelectedPathComponent();
        if(selectedNode!=null){
            nodeName = selectedNode.toString();
        }
        jp = new JPanel();
        jp.setBackground(Color.WHITE);
        jp.setLayout(new BorderLayout(0, 0));
        jp.setBorder(BorderFactory.createTitledBorder(nodeName));
        
        setBackground(Color.WHITE);
        setLayout(new BorderLayout(0, 0));
        jp.setLayout(new GridBagLayout());
        GridBagConstraints g = new GridBagConstraints();
        //g.anchor = GridBagConstraints.EAST;
        g.anchor = GridBagConstraints.WEST;//add by caill 2015.1.14将第一列控件设置为左对齐
        g.insets = new Insets(15, 10, 5, 10);
        g.gridx = 0;
        g.gridy = 0;
        jp.add(jl1, g);
        jtf1.setText(versionRule.name);
        GridBagConstraints g1 = new GridBagConstraints();
        g1.insets = new Insets(15, 10, 5, 10);
        g1.gridx = 1;
        g1.gridy = 0;
        jtf1.updateUI();
        jp.add(jtf1, g1);
        
        g.gridx = 0;
        g.gridy = 1;
        jp.add(jl2,g);
        g.gridx = 1;
        g.gridy = 1;
        jtf7.setText(versionRule.tag);
        //System.out.println(map.get(jl2.getText()));
        jp.add(jtf7,g);
        
        g.gridx = 0;
        g.gridy = 2;
        jp.add(jl3,g);
        g.gridx = 1;
        g.gridy = 2;
        jtf2.setText(versionRule.jumpCharacter);
        jp.add(jtf2,g);
        
        g.gridx = 0;
        g.gridy = 3;
        jp.add(jl4,g);
        g.gridx = 1;
        g.gridy = 3;
        jtf3.setText(versionRule.initialValue);
        jp.add(jtf3,g);
        
        g.gridx = 0;
        g.gridy = 4;
        jp.add(jl5,g);
        g.gridx = 1;
        g.gridy = 4;
        jtf4.setText(versionRule.stepLength);
        jp.add(jtf4,g);
        
        g.gridx = 0;
        g.gridy = 5;
        jp.add(jl6,g);
        g.gridx = 1;
        g.gridy = 5;
        jtf5.setText(versionRule.prefixion);
        jp.add(jtf5,g);
        
        g.gridx = 0;
        g.gridy = 6;
        jp.add(jl7,g);
        g.gridx = 1;
        g.gridy = 6;
        jtf6.setText(versionRule.suffix);
        jp.add(jtf6,g);
        
        g.gridx = 0;
        g.gridy = 7;
        jp.add(jl8, g);
        jta.setText(versionRule.description);
        jta.setLineWrap(true);
        g1.gridx = 1;
        g1.gridy = 7;
        jp.add(new JScrollPane(jta),g1);
        return jp;
    }
    
    //按钮管理,由于点击不同的按钮,按钮区各个按钮的显示状态不同,因此要对按钮状态进行设置
    public void buttonManager(){
        addButton.setEnabled(true);
        modifyButton.setEnabled(true);
        deleteButton.setEnabled(true);
        checkButton.setEnabled(true);
        tree.setEnabled(true);
    }
    
    //按钮管理,由于点击不同的按钮,按钮区各个按钮的显示状态不同,因此要对按钮状态进行设置
    public void buttonManager1(){
        saveButton.setEnabled(false);
        cancelButton.setEnabled(false);
    }
    
    //按钮管理,由于点击不同的按钮,按钮区各个按钮的显示状态不同,因此要对按钮状态进行设置
    public void buttonManager2(){
        addButton.setEnabled(false);
        modifyButton.setEnabled(false);
        deleteButton.setEnabled(false);
        checkButton.setEnabled(false);
        tree.setEnabled(false);
        saveButton.setEnabled(true);
        cancelButton.setEnabled(true);
    }
    /**
     * added by zhouhui
     */
    private void addListenner(){
        /**
         * 查看使用范围
         */
        checkButton.addActionListener(new ActionListener() {
            
            @Override
            public void actionPerformed(ActionEvent e) {
                DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode) tree.getLastSelectedPathComponent();
                if(selectedNode == null){
                    JOptionPane.showMessageDialog(null, "请选中要查看的版本号", "无版本号", JOptionPane.WARNING_MESSAGE);
                    return;
                }
                String name = selectedNode.toString();
                if(name == null || name.equals("") || name.equals("版本号规则")){
                    JOptionPane.showMessageDialog(null, "请选中要查看的版本号", "无版本号", JOptionPane.WARNING_MESSAGE);
                    return;
                }
                UsedToDialog usedToDialog = new UsedToDialog(name);
                usedToDialog.setVisible(true);
            }    
        });
    }
    
    public JPanel getThis(){
        return this;
    }
    
    public List<VersionRule> getSelectedVRs(){
        TreePath[] selectionPaths = tree.getSelectionPaths();
        //未选中, 返回
        if(selectionPaths == null || selectionPaths.length == 0){
            return null;
        }
        //选中根节点, 返回
        if(selectionPaths.length == 1 &&
        !(((DefaultMutableTreeNode)selectionPaths[0].getLastPathComponent()).getUserObject() instanceof VersionRuleWrapper)){
            return null;
        }
        List<VersionRule> list = new ArrayList<VersionRule>();
        for(TreePath path : selectionPaths){
            DefaultMutableTreeNode node = (DefaultMutableTreeNode) path.getLastPathComponent();
            Object obj = node.getUserObject();
            if(obj instanceof VersionRuleWrapper){
                list.add(((VersionRuleWrapper)obj).getVR());
            }
        }
        return list;
    }
}