Examples of pop()


Examples of com.foundationdb.sql.server.ServerJavaRoutine.pop()

                    }
                    catch (SQLException ex) {
                    }
                }
            }
            call.pop(success);
        }
        return new ExecuteResults(resultSets);
    }

    @Override
View Full Code Here

Examples of com.googlecode.mjorm.query.DaoModifier.pop()

          assertType(value, modiferTree, Object[].class);
          modifier.addToSetEach(field, Object[].class.cast(value));
          break;
        case MqlParser.POP:
          field = child(modiferTree, 0).getText();
          modifier.pop(field);
          break;
        case MqlParser.SHIFT:
          field = child(modiferTree, 0).getText();
          modifier.pop(field);
          break;
View Full Code Here

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

        JButton remove = new JButton("-");
        remove.addActionListener(
            new ActionListener() {
                public void actionPerformed(ActionEvent event) {
                    stack.pop();
                }
            }
        );

        JScrollPane scroll = new JScrollPane(stack);
View Full Code Here

Examples of com.naef.jnlua.LuaState.pop()

            // Call
            luaState.call(2, 1); // 2 arguments, 1 return

            // Get and print result
            int result = luaState.toInteger(1);
            luaState.pop(1); // Pop result
            System.out.println("According to Lua, 1 + 1 = " + result);
        } finally {
                luaState.close();
        }
    }
View Full Code Here

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

        ognlStackContext.put(XWorkConverter.REPORT_CONVERSION_ERRORS, Boolean.TRUE);
        ognlStackContext.put(XWorkConverter.CONVERSION_PROPERTY_FULLNAME, "bean.birth");

        String[] value = new String[]{"invalid date"};
        assertEquals("Conversion should have failed.", OgnlRuntime.NoConversionPossible, converter.convertValue(ognlStackContext, action.getBean(), null, "birth", value, Date.class));
        stack.pop();

        Map conversionErrors = (Map) stack.getContext().get(ActionContext.CONVERSION_ERRORS);
        assertNotNull(conversionErrors);
        assertTrue(conversionErrors.size() == 1);
        assertEquals(value, conversionErrors.get("bean.birth"));
View Full Code Here

Examples of com.sleepycat.je.txn.TxnChain.pop()

                    DbLsn.compareTo(undoLsn, matchpointLsn) > 0) {

                UndoReader undo =
                    new UndoReader(envImpl, undoLsn, undoDatabases);

                RevertInfo revertTo = chain.pop();

                logFinest(undoLsn, undo, revertTo);

                /*
                 * When we undo this log entry, we've logically truncated
View Full Code Here

Examples of com.sun.corba.se.impl.orbutil.StackImpl.pop()

    {
        synchronized (this) {
                checkShutdownState();
        }
        StackImpl stack = (StackImpl)(OAInvocationInfoStack.get()) ;
        return (OAInvocationInfo)(stack.pop()) ;
    }

    /**
     * The bad server id handler is used by the Locator to
     * send back the location of a persistant server to the client.
View Full Code Here

Examples of com.sun.enterprise.util.collection.FastStack.pop()

      } // end of synchronized
     
     
      //Now destroy all collected objects
      while (! stack.isEmpty()) {
        Object object = stack.pop();
      beforeDestroy(object);
         factory.destroy(object);
      }
     
//Bug 4677074      System.out.println("Leaving service after killing " + killedCount + " (idle) objects. Now size: " + list.size());
View Full Code Here

Examples of com.sun.faces.component.CompositeComponentStackManager.pop()

    private void popCompositeComponent(FacesContext ctx) {

        CompositeComponentStackManager manager =
              CompositeComponentStackManager.getManager(ctx);
        manager.pop();

    }

} // END ContextualCompositeMethodExpression
View Full Code Here

Examples of com.sun.msv.util.LightStack.pop()

    protected void popActiveScope( IdentityConstraint c, SelectorMatcher matcher ) {
        LightStack s = (LightStack)activeScopes.get(c);
        if(s==null)
            // since it's trying to pop, there must be a non-empty stack.
            throw new Error();
        if(s.pop()!=matcher)
            // trying to pop a non-active scope.
            throw new Error();
    }
       
   
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.