Examples of push()


Examples of kiss.Table.push()

                                        continue add;
                                    }
                                }
                            }

                            table.push(method, annotation);
                        }
                    }
                }
            }
        }

Examples of lombok.val.push()

    val typeStack = new LinkedList<Class<?>>();

    // populate initially with type's implementing interfaces
    for (Class<?> iface : type.getInterfaces())
    {
      typeStack.push(iface);
      processed.add(iface);
    }

    // populate with superclasses' interfaces
    Class<?> superClass = type;

Examples of maelstrom.funge.interpreter.stack.Stack.push()

  public static class Not implements Operator {

    public void perform(Funge funge) {
      Stack stack = funge.getStackStack().getStack();

      stack.push(stack.pop() == 0 ? 1 : 0);
    }

    public String getDescription() {
      return "Pushes the logical not of the first element on the stack";
    }

Examples of mf.org.apache.xerces.util.IntStack.push()

                    // fall through

                case Op.QUESTION:
                    {
                        opStack.push(op);
                        dataStack.push(offset);
                        op = op.getChild();
                    }
                    break;

                case Op.NONGREEDYCLOSURE:

Examples of net.citizensnpcs.utils.PageUtils.PageInstance.push()

        instance.header(ChatColor.GREEN
                + StringUtils.listify("Completed Quests " + ChatColor.WHITE + "<%x/%y>" + ChatColor.GREEN));
        for (String quest : quester.getQuests()) {
            if (instance.maxPages() > page)
                break;
            instance.push(ChatColor.GREEN + "   - " + StringUtils.wrap(quest));
        }
        if (page > instance.maxPages()) {
            player.sendMessage(ChatColor.GRAY + "Invalid page entered. There are only " + instance.maxPages()
                    + " pages.");
            return;

Examples of net.fortytwo.ripple.model.RippleList.push()

            return mc.list();
        }

        RippleList l = mc.list().push(values[0]);
        for (int i = 1; i < values.length; i++) {
            l = l.push(values[i]);
        }

        return l;
    }

Examples of net.gridshield.nexsm.mapper.pusher.Pusher.push()

              
               // the params for the command
              
               pus.initialize(cgidir);
               pus.setPushManager(_pushManager);
               outval = pus.push(command);
            } catch (ClassNotFoundException ex) {
                ex.printStackTrace();
            } catch (InstantiationException ex) {
                ex.printStackTrace();
            } catch (IllegalAccessException ex) {

Examples of net.gridshield.nexsm.mapper.pusher.ThreadURLPush.push()

                }
               
                // needs cleanup Sergio 21/May/2007
                ThreadURLPush pus = new ThreadURLPush(sb, uploadURL);
                pus.setPushManager(_pushManager);
                pus.push(name + ".xml");
            }
    //        ThreadURLPush pus = new ThreadURLPush(sb, _codebase.getProtocol() + "://" + _codebase.getHost() + _codebase.getFile() + theFile);
        }
    }
   

Examples of net.hasor.db.datasource.local.ConnectionSequence.push()

        connSeq.pop();
    }
    public static void clearSync(final DataSource dataSource) {
        LocalDataSourceHelper localHelper = (LocalDataSourceHelper) DataSourceUtils.getDataSourceHelper();
        ConnectionSequence connSeq = localHelper.getConnectionSequence(dataSource);
        connSeq.push(null);
    }
}

Examples of net.sf.cglib.core.CodeEmitter.push()

/* 55 */     for (int i = 0; i < arrays.length; i++) {
/* 56 */       Type type = Type.getType(arrays[i].getClass());
/* 57 */       declare_field(2, getFieldName(i), type, null, null);
/* 58 */       e.load_this();
/* 59 */       e.load_arg(0);
/* 60 */       e.push(i);
/* 61 */       e.aaload();
/* 62 */       e.checkcast(type);
/* 63 */       e.putfield(getFieldName(i));
/*    */     }
/* 65 */     e.return_value();
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.