Package net.sf.parteg.base.testcasegraph.generated

Examples of net.sf.parteg.base.testcasegraph.generated.TCGOCLExpression


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setCondition(TCGOCLExpression newCondition) {
    TCGOCLExpression oldCondition = condition;
    condition = newCondition;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, GeneratedPackage.TCGOCL_IF_THEN_ELSE__CONDITION, oldCondition, condition));
  }
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setThenExpression(TCGOCLExpression newThenExpression) {
    TCGOCLExpression oldThenExpression = thenExpression;
    thenExpression = newThenExpression;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, GeneratedPackage.TCGOCL_IF_THEN_ELSE__THEN_EXPRESSION, oldThenExpression, thenExpression));
  }
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setElseExpression(TCGOCLExpression newElseExpression) {
    TCGOCLExpression oldElseExpression = elseExpression;
    elseExpression = newElseExpression;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, GeneratedPackage.TCGOCL_IF_THEN_ELSE__ELSE_EXPRESSION, oldElseExpression, elseExpression));
  }
View Full Code Here

             
              for(int nExpressionCounter = 0;
                nExpressionCounter < oConjunction.getExpressions().size();
                ++nExpressionCounter)
              {
                TCGOCLExpression oExpression = oConjunction.getExpressions().get(nExpressionCounter);
                if(nExpressionCounter != 0)
                  in_oFormattedOutput.append(" && ");
                if(oExpression != null)
                {
                  try {
View Full Code Here

TOP

Related Classes of net.sf.parteg.base.testcasegraph.generated.TCGOCLExpression

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.