Package edu.isi.karma.controller.command.alignment.GetClassesCommand

Examples of edu.isi.karma.controller.command.alignment.GetClassesCommand.INTERNAL_NODES_RANGE


  @Override
  public Command createCommand(HttpServletRequest request,
      Workspace workspace) {
    String propertyURI = request.getParameter(Arguments.propertyURI.name());
    String worksheetId =request.getParameter(Arguments.worksheetId.name());
    INTERNAL_NODES_RANGE range = INTERNAL_NODES_RANGE.valueOf(
        request.getParameter(Arguments.nodesRange.name()));
   
    return new GetClassesCommand(getNewId(workspace), worksheetId, range, propertyURI);
  }
View Full Code Here

TOP

Related Classes of edu.isi.karma.controller.command.alignment.GetClassesCommand.INTERNAL_NODES_RANGE

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.