Package noop.model

Examples of noop.model.LanguageElement


  @Override
  public void visit(MethodInvocation methodInvocation) {
    Library library = workspace.lookupLibrary(methodInvocation.vertex.libraryUid);
    Iterable<Edge> edges = library.edgesFrom(methodInvocation.vertex);
    LanguageElement target = null;
    for (Edge edge : edges) {
      switch (edge.type) {
        case TARGET:
          target = workspace.resolve(edge.dest);
          break;
      }
    }

    modelVisitor.enter(target);
    target.accept(modelVisitor);
    modelVisitor.leave(target);
   
  }
View Full Code Here


    this.addVertices = addVertices;
  }

  public void editNode(EditNodeOperation operation) {
    Library library = workspace.lookupLibrary(operation.vertex.libraryUid);
    LanguageElement currentValue = library.getElements().get(operation.vertex.index);
    if (currentValue.getClass() != operation.newValue.getClass()) {
      throw new IllegalArgumentException(String.format("Cannot edit node %s with %s because the current type is %s",
          operation.vertex, operation.newValue, currentValue.getClass()));
    }
    library.replace(operation.vertex.index, operation.newValue);
  }
View Full Code Here

TOP

Related Classes of noop.model.LanguageElement

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.