Package org.eclipse.ocl.expressions

Examples of org.eclipse.ocl.expressions.Variable


    /**
     * @generated
     */
    private static Variable createVar(Environment ecoreEnv, String name,
        EClassifier type) {
      Variable var = EcoreFactory.eINSTANCE.createVariable();
      var.setName(name);
      var.setType(ecoreEnv.getUMLReflection().getOCLType(type));
      return var;
    }
View Full Code Here


    /**
     * @generated
     */
    private static Variable createVar(Environment ecoreEnv, String name,
        EClassifier type) {
      Variable var = EcoreFactory.eINSTANCE.createVariable();
      var.setName(name);
      var.setType(ecoreEnv.getUMLReflection().getOCLType(type));
      return var;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.ocl.expressions.Variable

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.