Examples of jumpTo()


Examples of org.broad.igv.ui.panel.ReferenceFrame.jumpTo()

                    if (!chr.equals(frame.getChrName())) {
                        // Switch chromosomes.  We have to do some tricks to maintain the same resolution scale.
                        double range = frame.getEnd() - frame.getOrigin();
                        int newOrigin = (int) Math.max(newCenter - range / 2, 0);
                        int newEnd = (int) (newOrigin + range);
                        frame.jumpTo(chr, newOrigin, newEnd);
                    } else {
                        frame.centerOnLocation(newCenter);
                    }
                }
            } catch (IOException e) {
View Full Code Here

Examples of org.fireflow.engine.IWorkItem.jumpTo()

   * @see org.fireflow.engine.IWorkflowSession#completeWorkItemAndJumpTo(java.lang.String, java.lang.String)
   */
  public void completeWorkItemAndJumpTo(String workItemId,
      String targetActivityId) throws EngineException, KernelException {
    IWorkItem wi = this.findWorkItemById(workItemId);
    wi.jumpTo(targetActivityId);

  }

  /* (non-Javadoc)
   * @see org.fireflow.engine.IWorkflowSession#completeWorkItemAndJumpTo(java.lang.String, java.lang.String, java.lang.String)
View Full Code Here

Examples of org.fireflow.engine.IWorkItem.jumpTo()

   */
  public void completeWorkItemAndJumpTo(String workItemId,
      String targetActivityId, String comments) throws EngineException,
      KernelException {
    IWorkItem wi = this.findWorkItemById(workItemId);
    wi.jumpTo(targetActivityId, comments);
  }

  /* (non-Javadoc)
   * @see org.fireflow.engine.IWorkflowSession#completeWorkItemAndJumpTo(java.lang.String, java.lang.String, org.fireflow.engine.taskinstance.DynamicAssignmentHandler, java.lang.String)
   */
 
View Full Code Here

Examples of org.fireflow.engine.IWorkItem.jumpTo()

  public void completeWorkItemAndJumpTo(String workItemId,
      String targetActivityId,
      DynamicAssignmentHandler dynamicAssignmentHandler, String comments)
      throws EngineException, KernelException {
    IWorkItem wi = this.findWorkItemById(workItemId);
    wi.jumpTo(targetActivityId, dynamicAssignmentHandler, comments);

  }
  /* (non-Javadoc)
   * @see org.fireflow.engine.IWorkflowSession#completeWorkItemAndJumpToEx(java.lang.String, java.lang.String, org.fireflow.engine.taskinstance.DynamicAssignmentHandler, java.lang.String)
   */
 
View Full Code Here

Examples of org.w3c.jigsaw.ssi.commands.ControlCommand.jumpTo()

    {
  if ((! control) || (command == null))
      throw new ControlCommandException("SEGMENT","Internal Error");
  ControlCommand cc = (ControlCommand)command;
  int jump = 0;
  jump = cc.jumpTo(ssiframe,
       request,
       registry,
       parameters,
       ssiframe.vars);
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.