Package org.emftrace.metamodel.ReportModel

Examples of org.emftrace.metamodel.ReportModel.Report


       
        ReportContainer container = (ReportContainer)helper.get(0);
       
        for(int i = 0; i < container.getReports().size(); i++)
        {
          Report report = container.getReports().get(i);
         
          if( !(report instanceof ImpactReport)     ) continue;
          if( report.getType() == null              ) continue;
          if( report.getType() != ReportType.IMPACT ) continue;
         
          if( ((ImpactReport) report).getChangeType() != changeType ) continue;
         
          List<EObject> srcs = ((ImpactReport) report).getImpactSources();
          List<EObject> targets = ((ImpactReport) report).getAffectedElements();
View Full Code Here


       
        ReportContainer container = (ReportContainer)helper.get(0);
       
        for(int i = 0; i < container.getReports().size(); i++)
        {
          Report report = container.getReports().get(i);
         
          if( !(report instanceof ConsistenceReport) ) continue;
          if( report.getType() == null               ) continue;
          if( report.getType() == ReportType.IMPACT  ) continue;
         
          if( ((ConsistenceReport) report).getElement()         != model         ) continue;
          if( ((ConsistenceReport) report).getTypeOfViolation() != violationType ) continue;
         
          return true;
View Full Code Here

       
        ReportContainer container = (ReportContainer)helper.get(0);
       
        for(int i = 0; i < container.getReports().size(); i++)
        {
          Report report = container.getReports().get(i);
         
          if( !(report instanceof ImpactReport)     ) continue;
          if( report.getType() == null              ) continue;
          if( report.getType() != ReportType.IMPACT ) continue;
         
          if( ((ImpactReport) report).getChangeType() != changeType ) continue;
         
          List<EObject> srcs = ((ImpactReport) report).getImpactSources();
          List<EObject> targets = ((ImpactReport) report).getAffectedElements();
View Full Code Here

       
        ReportContainer container = (ReportContainer)helper.get(0);
       
        for(int i = 0; i < container.getReports().size(); i++)
        {
          Report report = container.getReports().get(i);
         
          if( !(report instanceof ConsistenceReport) ) continue;
          if( report.getType() == null               ) continue;
          if( report.getType() == ReportType.IMPACT  ) continue;
         
          if( ((ConsistenceReport) report).getElement()         != model         ) continue;
          if( ((ConsistenceReport) report).getTypeOfViolation() != violationType ) continue;
         
          return true;
View Full Code Here

TOP

Related Classes of org.emftrace.metamodel.ReportModel.Report

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.