Examples of TCGOCLExpression


Examples of org.xilaew.atg.model.activityTestCaseGraph.TCGOCLExpression

    if (name == null) {
      name = randomString() + "Action";
    }
    tcgAction.setName(name);
    for (Constraint umlConstraint : umlAction.getLocalPostconditions()) {
      TCGOCLExpression tcgOCLExp = (TCGOCLExpression) transformElement(umlConstraint);
      if (tcgOCLExp != null) {
        tcgAction.getLocalPostconditions().add(tcgOCLExp);
      }
    }
    return tcgAction;
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.