Package org.emftrace.metamodel.QUARCModel.Query

Examples of org.emftrace.metamodel.QUARCModel.Query.SelectedGoalsSet


   * <!-- end-user-doc -->
   * @generated NOT
   */
  @Override
  public String getText(Object object) {
    SelectedGoalsSet selectedGoalsSet = (SelectedGoalsSet)object; 
    if (selectedGoalsSet.isChanged())
      return getString("_UI_SelectedGoalsSet_type") + " (modified)";
    else
  return getString("_UI_SelectedGoalsSet_type");
   
  }
View Full Code Here


    if (query != null){
     
      obsolete = obsolete || query.isChanged();
     
      AssignedConstraintsSet assignedConstraintsSet = query.getAssignedConstraintsSet();
      SelectedGoalsSet selectedGoalsSet = query.getSelectedGoalsSet();
      SelectedPrinciplesSet selectedPrinciplesSet = query.getSelectedPrinciplesSet();

     
      if (assignedConstraintsSet!= null)
        obsolete = obsolete || assignedConstraintsSet.isChanged();
     
      if (selectedGoalsSet!= null)
        obsolete = obsolete || selectedGoalsSet.isChanged();
     
      if (selectedPrinciplesSet!= null)
        obsolete = obsolete || selectedPrinciplesSet.isChanged();
     
    }
View Full Code Here

    managedFormComposite.setLayout(new FillLayout()); // set any Layout
    GSSQuery query =  (GSSQuery) modelElement.eContainer();
  //  GSSQueryContainment queryContainment  =  (GSSQueryContainment) query.eContainer();
  //  Toolbox toolbox = (Toolbox) queryContainment.eContainer();

    SelectedGoalsSet selectedGoalsSet = query.getSelectedGoalsSet();
   
    builder = new SelectedGoalsGraphBuilder(managedFormComposite, SWT.NONE, getSite(), (SelectedGoalsSet)selectedGoalsSet, accessLayer);
    builder.build();
  }
View Full Code Here

TOP

Related Classes of org.emftrace.metamodel.QUARCModel.Query.SelectedGoalsSet

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.