Examples of push()


Examples of com.gs.collections.impl.stack.mutable.primitive.FloatArrayStack.push()

        final FloatArrayStack result = new FloatArrayStack();
        this.delegate.forEach(new Procedure<T>()
        {
            public void value(T each)
            {
                result.push(floatFunction.floatValueOf(each));
            }
        });
        return result.toImmutable();
    }

Examples of com.gs.collections.impl.stack.mutable.primitive.IntArrayStack.push()

        final IntArrayStack result = new IntArrayStack();
        this.delegate.forEach(new Procedure<T>()
        {
            public void value(T each)
            {
                result.push(intFunction.intValueOf(each));
            }
        });
        return result.toImmutable();
    }

Examples of com.gs.collections.impl.stack.mutable.primitive.LongArrayStack.push()

        final LongArrayStack result = new LongArrayStack();
        this.delegate.forEach(new Procedure<T>()
        {
            public void value(T each)
            {
                result.push(longFunction.longValueOf(each));
            }
        });
        return result.toImmutable();
    }

Examples of com.gs.collections.impl.stack.mutable.primitive.ShortArrayStack.push()

        final ShortArrayStack result = new ShortArrayStack();
        this.delegate.forEach(new Procedure<T>()
        {
            public void value(T each)
            {
                result.push(shortFunction.shortValueOf(each));
            }
        });
        return result.toImmutable();
    }

Examples of com.knowgate.sms.SMSPush.push()

   
  oPsh.connect(getDataBaseBind().getProperty("smsurl"),
           getDataBaseBind().getProperty("smsaccount"),
           getDataBaseBind().getProperty("smspassword"),
           oPrp);
  SMSResponse oRsp = oPsh.push (oMsg);
  oPsh.close();

    JDCConnection oCon = getDataBaseBind().getConnection("SMSSender");
    oCon.setAutoCommit (true);
  PreparedStatement oStm = oCon.prepareStatement("INSERT INTO "+DB.k_sms_audit+" (id_sms,gu_workarea,pg_part,nu_msisdn,id_msg,gu_batch,bo_success,nu_error,id_status,dt_sent,gu_writer,gu_address,gu_contact,gu_company,tx_msg,tx_err) "+

Examples of com.lightcrafts.ui.operation.drag.DraggableStack.push()

    public static void main(String[] args) {

        final DraggableStack stack = new DraggableStack();

        stack.push(new DraggableLabel("A"));
        stack.push(new DraggableLabel("B"));
        stack.push(new DraggableLabel("C"));

        JButton add = new JButton("+");
        add.addActionListener(

Examples of com.mojang.minecraft.Entity.push()

      List var11;
      if((var11 = var1.findEntities(var2, var2.bb.grow(0.2F, 0.0F, 0.2F))) != null && var11.size() > 0) {
         for(int var8 = 0; var8 < var11.size(); ++var8) {
            Entity var10;
            if((var10 = (Entity)var11.get(var8)).isPushable()) {
               var10.push(var2);
            }
         }
      }

   }

Examples of com.notnoop.apns.ApnsService.push()

        ApnsService service =
                APNS.newService().withSSLContext(clientContext())
                .withGatewayDestination(LOCALHOST, gatewayPort)
                .build();
        server.stopAt(msg1.length());
        service.push(msg1);
        server.getMessages().acquire();

        assertArrayEquals(msg1.marshall(), server.getReceived().toByteArray());
    }

Examples of com.opensymphony.xwork2.util.OgnlValueStack.push()

            vs.getContext().putAll(Dispatcher.getInstance().createContextMap(req, res, null, servletContext));
            ctx = new ActionContext(vs.getContext());
            if (ctx.getActionInvocation() == null) {
                // put in a dummy ActionSupport so basic functionality still works
                ActionSupport action = new ActionSupport();
                vs.push(action);
                ctx.setActionInvocation(new DummyActionInvocation(action));
            }
        }

        // delegate to the actual page decorator

Examples of com.opensymphony.xwork2.util.ValueStack.push()

            if ((iterator != null) && iterator.hasNext())
            {
                Object currentValue = iterator.next();
                if (currentValue!=null)
                {
                    stack.push(currentValue);
            /*
             * UPGRADE-struts 2.1.6
             * CHANGE: changed "getId()" to "getVar()"
             * Reason: The Funktion no longer exists.
             */
 
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.