Examples of push()


Examples of org.neo4j.graphalgo.impl.util.PathImpl.Builder.push()

    private Builder toBuilder( Path path )
    {
        Builder builder = new Builder( path.startNode() );
        for ( Relationship rel : path.relationships() )
        {
            builder = builder.push( rel );
        }
        return builder;
    }

    private Path[] goOneStep( Node node, Iterator<Path> visitor,

Examples of org.netbeans.jemmy.drivers.ButtonDriver.push()

             JButtonFinder(ComponentSearcher.
                     getTrueChooser("JButton")),
             index));
  bo.copyEnvironment(divOper);
  ButtonDriver bdriver = DriverManager.getButtonDriver(bo);
  bdriver.push(bo);
  bdriver.push(bo);
    }
}

Examples of org.netbeans.jemmy.operators.JButtonOperator.push()

        int originalDirection = adj.getScrollDirection();
        while(adj.getScrollDirection() == originalDirection) {
            if(originalDirection == ScrollAdjuster.INCREASE_SCROLL_DIRECTION) {
                increaseButton.push();
            } else {
                decreaseButton.push();
            }
        }
    }
}

Examples of org.nlogo.api.Graphics2DWrapper.push()

    }

    if (wrap) {
      topology.wrapDrawable(this, sg, xcor, ycor, spotlightSize, patchSize);
    } else {
      sg.push();
      double size = spotlightSize * patchSize + adjustSize(spotlightSize, patchSize);
      double offset = size / 2.0;
      double x = topology.graphicsX(xcor, patchSize) - offset;
      double y = topology.graphicsY(ycor, patchSize) - offset;
      sg.translate(x, y);

Examples of org.noname.designer.core.interfaces.EvaluationContext.push()

  private EvaluationContext createContext() {
    Object thisObj = createObject(componentType);
    EvaluationContext context = new EvaluationContext(thisObj);
    FrameContext frame = new FrameContext();
    context.push(frame);
    VariableContext arguments = new VariableContext();
    frame.push(arguments);
    return context;
  }

Examples of org.noname.designer.core.interfaces.FrameContext.push()

    Object thisObj = createObject(componentType);
    EvaluationContext context = new EvaluationContext(thisObj);
    FrameContext frame = new FrameContext();
    context.push(frame);
    VariableContext arguments = new VariableContext();
    frame.push(arguments);
    return context;
  }

  private MethodDeclaration getConstructor(TypeDeclaration typeDec) {
    MethodDeclaration constructor = null;

Examples of org.nutz.lang.util.LinkedIntArray.push()

    LinkedIntArray lia = indexes.get(name);
    if (null == lia) {
      lia = new LinkedIntArray();
      indexes.put(name, lia);
    }
    lia.push(index);
    names.put(index, name);
    orders.add(name);
  }

  Collection<LinkedIntArray> values() {

Examples of org.nutz.lang.util.LinkedLongArray.push()

public class QueryLongCallback implements SqlCallback {

  public Object invoke(Connection conn, ResultSet rs, Sql sql) throws SQLException {
    LinkedLongArray ary = new LinkedLongArray(20);
    while (rs.next())
      ary.push(rs.getLong(1));
    return ary.toArray();
  }

}

Examples of org.nutz.mongo.util.Moo.push()

    answer.setUpdatedAt(new Date());
    dao.runNoError(new Callback<DB>() {
      public void invoke(DB db) {
        dao.save(answer);
        Moo moo = Moo.NEW();
        moo.push("answers", new DBRef(db, "answer", new ObjectId(answer.getId())));
        dao.update(Question.class, Moo.NEW("id", questionId), moo);
      }
    });
    commons.fresh(Question.class, questionId);
    return Ajax.ok();

Examples of org.objectweb.asm.commons.GeneratorAdapter.push()

          fv.visitEnd();
        }

        if (clinit != null) {
          Type[] formals = m.getArgumentTypes();
          clinit.push(Type.getType(itf));
          clinit.push(m.getName());
          clinit.push(formals.length);
          clinit.newArray(CLASS);
          for (int j = 0; j < formals.length; ++j) {
            clinit.dup();
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.