Package org.emftrace.ui.rules

Examples of org.emftrace.ui.rules.ImpactAnalysisOperation


          wizard.selectedModels.add(model);
         
          if( wizard.changeTarget != null )
            wizard.selectedModels.add(wizard.changeTarget);
         
            ImpactAnalysisOperation op = new ImpactAnalysisOperation(graph.getProject(), wizard.selectedModels, wizard.selectedCatalog, wizard.b1, wizard.b2, true);

            ProgressMonitorDialog progressDialog = new ProgressMonitorDialog(shell);
            progressDialog.setCancelable(false);
            try
            {
        progressDialog.run(true, true, op);
       
        MessageDialog.openInformation(shell, "Impact Analysis completed", op.getSizeOfImpactSet()+" impact reports generated");
      }
            catch (InvocationTargetException e)
      {
        // TODO Auto-generated catch block
        e.printStackTrace();
View Full Code Here


    List<EObject> startingImpactSet = new ArrayList<EObject>();
    startingImpactSet.add(model);
   
        if( wizard.finishedSuccessfully )
        {        
            ImpactAnalysisOperation op = new ImpactAnalysisOperation(graph.getProject(), startingImpactSet, null, false, true, false);

            ProgressMonitorDialog progressDialog = new ProgressMonitorDialog(shell);
            progressDialog.setCancelable(false);
            try
            {
        progressDialog.run(true, true, op);
       
        MessageDialog.openInformation(shell, "Impact Analysis completed", op.getSizeOfImpactSet()+" impacted elements found");
      }
            catch (InvocationTargetException e)
      {
        // TODO Auto-generated catch block
        e.printStackTrace();
View Full Code Here

          wizard.selectedModels.add(model);
         
          if( wizard.changeTarget != null )
            wizard.selectedModels.add(wizard.changeTarget);
         
            ImpactAnalysisOperation op = new ImpactAnalysisOperation(graph.getProject(), wizard.selectedModels, wizard.selectedCatalog, wizard.b1, wizard.b2, true);

            ProgressMonitorDialog progressDialog = new ProgressMonitorDialog(shell);
            progressDialog.setCancelable(false);
            try
            {
        progressDialog.run(true, true, op);
       
        MessageDialog.openInformation(shell, "Impact Analysis completed", op.getSizeOfImpactSet()+" impact reports generated");
      }
            catch (InvocationTargetException e)
      {
        // TODO Auto-generated catch block
        e.printStackTrace();
View Full Code Here

    List<EObject> startingImpactSet = new ArrayList<EObject>();
    startingImpactSet.add(model);
   
        if( wizard.finishedSuccessfully )
        {        
            ImpactAnalysisOperation op = new ImpactAnalysisOperation(graph.getProject(), startingImpactSet, null, false, true, false);

            ProgressMonitorDialog progressDialog = new ProgressMonitorDialog(shell);
            progressDialog.setCancelable(false);
            try
            {
        progressDialog.run(true, true, op);
       
        MessageDialog.openInformation(shell, "Impact Analysis completed", op.getSizeOfImpactSet()+" impacted elements found");
      }
            catch (InvocationTargetException e)
      {
        // TODO Auto-generated catch block
        e.printStackTrace();
View Full Code Here

TOP

Related Classes of org.emftrace.ui.rules.ImpactAnalysisOperation

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.