Examples of AcaGenerator


Examples of org.destecs.ide.debug.aca.AcaGenerator

        + configuration.getName();
   
    ILaunchConfigurationWorkingCopy baseConfigWorkingCopy = baseConfig.getWorkingCopy();
    baseConfigWorkingCopy.setAttribute(IDebugConstants.DESTECS_LAUNCH_CONFIG_CT_LEAVE_DIRTY_FOR_INSPECTION, false);

    AcaGenerator generator = new AcaGenerator(configuration, baseConfigWorkingCopy, monitor, 10, project, outputPreFix);
    generator.addGenerator(new IncludeBaseConfigAcaPlugin());
    //generator.addGenerator(new ArchitectureAcaPlugin());
    generator.addGenerator(new ArchitecturesAcaPlugin());
    generator.addGenerator(new SharedDesignParameterAcaPlugin());
    generator.addGenerator(new ScenarioAcaPlugin());
    generator.addGenerator(new CTImplementationsAcaPlugin());
    generator.addGenerator(new CTSettingsAcaPlugin());

    monitor.worked(10);
    Set<ILaunchConfiguration> configurations;
    try {
      configurations = generator.generate();
    } catch (Exception e1) {
      throw new CoreException(new Status(IStatus.ERROR, "DESTECS Debug", e1.getMessage()));
    }

    IDestecsProject dProject = (IDestecsProject) project.getAdapter(IDestecsProject.class);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.