Package fr.tm.elibel.smartqvt.qvt.qvtoperational

Examples of fr.tm.elibel.smartqvt.qvt.qvtoperational.OperationBody


  @SuppressWarnings("unchecked")
  private List getProposalsForOperation(Operation res) {
    List objects = new ArrayList();
    objects.addAll(res.getOwnedParameter());
    if (res instanceof ImperativeOperation) {
      OperationBody body = ((ImperativeOperation) res).getBody();
      List var2 = new ArrayList();
      var2.addAll(body.getContent());
      var2.addAll(((ImperativeOperation) res).getResult());
      if (body instanceof MappingBody)
        var2.addAll(((MappingBody) body).getInitSection());

      for (Iterator iter = var2.iterator(); iter.hasNext();) {
View Full Code Here

TOP

Related Classes of fr.tm.elibel.smartqvt.qvt.qvtoperational.OperationBody

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.