コード例 #1
0
ファイル: MainSmarxFrame.java プロジェクト: SnoopInf/pzks
 protected GraphPanel createSystemPanel() {
   GraphPanel localSystemPanel = new SystemPanel();
   localSystemPanel.setName("systemPanel");
   localSystemPanel.addValidator(new ConsistencyValidator());
   localSystemPanel.addValidator(new SubGraphValidator());
   return localSystemPanel;
 }
コード例 #2
0
ファイル: MainSmarxFrame.java プロジェクト: SnoopInf/pzks
 protected GraphPanel createTaskPanel() {
   GraphPanel localTaskPanel = new TaskPanel();
   localTaskPanel.setName("taskPanel");
   localTaskPanel.addValidator(new CyclingValidator());
   return localTaskPanel;
 }