Package de.scoopgmbh.copper.monitoring.client.ui.dashboard.result.engine

Examples of de.scoopgmbh.copper.monitoring.client.ui.dashboard.result.engine.ProcessingEngineController


    return new FxmlForm<ProccessorPoolController>(pool.getId(), new ProccessorPoolController(engine, pool, this, guiCopperDataProvider), messageProvider, new TabPaneShowFormStrategie(tabPane,true));
  }
 
  @Override
  public Form<ProcessingEngineController> createEngineForm(TabPane tabPane, ProcessingEngineInfo engine, DashboardResultModel model){
    return new FxmlForm<ProcessingEngineController>(engine.getId(), new ProcessingEngineController(engine,model,this,guiCopperDataProvider), messageProvider, new TabPaneShowFormStrategie(tabPane));
  }
View Full Code Here


        engineForm.show();
      }
    } else {
      for (ProcessingEngineInfo processingEngineInfo: dashboardResultModel.engines){
        String id = processingEngineInfo.getId();
        ProcessingEngineController controller = engineControllers.get(id);
        controller.setProcessingEngineInfo(processingEngineInfo);
      }     
    }
  }
View Full Code Here

TOP

Related Classes of de.scoopgmbh.copper.monitoring.client.ui.dashboard.result.engine.ProcessingEngineController

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.