Package de.hpi.eworld.simulationstatistic

Examples of de.hpi.eworld.simulationstatistic.SimulationStatisticPlugin


*/
public class SumoDumpImportProvider implements ImportProviderInterface {

  public void init(JMenu menu) {
    PluginManager pManager = PluginManager.lookup(this);
    SimulationStatisticPlugin plugin = null;
    try {
      plugin = (SimulationStatisticPlugin) pManager.getPlugin(SimulationStatisticPlugin.PLUGIN_ID);
    } catch (PluginLifecycleException e) {
      Logger log = Logger.getLogger(this.getClass());
      log.error("Error while initializing SUMO Dump Import menu support.", e);
    }
   
    plugin.initializeMenu(menu);
  }
View Full Code Here

TOP

Related Classes of de.hpi.eworld.simulationstatistic.SimulationStatisticPlugin

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.