Examples of push()


Examples of com.sun.tools.internal.ws.wsdl.framework.TWSDLParserContextImpl.push()

        TWSDLParserContext contextif,
        TWSDLExtensible parent,
        Element e) {
        TWSDLParserContextImpl context = (TWSDLParserContextImpl)contextif;
        if (XmlUtil.matchesTagNS(e, getBodyQName())) {
            context.push();
            context.registerNamespaces(e);

            SOAPBody body = new SOAPBody(context.getLocation(e));

            String use = XmlUtil.getAttributeOrNull(e, Constants.ATTR_USE);

Examples of com.sun.tools.ws.wsdl.framework.TWSDLParserContextImpl.push()

        TWSDLParserContext contextif,
        TWSDLExtensible parent,
        Element e) {
        TWSDLParserContextImpl context = (TWSDLParserContextImpl)contextif;
        if (XmlUtil.matchesTagNS(e, getBodyQName())) {
            context.push();
            context.registerNamespaces(e);

            SOAPBody body = new SOAPBody(context.getLocation(e));

            String use = XmlUtil.getAttributeOrNull(e, Constants.ATTR_USE);

Examples of com.thoughtworks.xstream.core.util.FastStack.push()

    public Path apply(Path relativePath) {
        FastStack absoluteStack = new FastStack(16);

        for (int i = 0; i < chunks.length; i++) {
            absoluteStack.push(chunks[i]);
        }

        for (int i = 0; i < relativePath.chunks.length; i++) {
            String relativeChunk = relativePath.chunks[i];
            if (relativeChunk.equals("..")) {

Examples of com.trsst.client.Client.push()

            printPushUsage();
            return 127; // "command not found"
        }

        for (String id : arguments) {
            System.out.println(destinationClient.push(client.pull(id), url));
            // Feed feed = client.pull(id);
            // if ( feed != null ) {
            // feed = client.push(feed, url);
            // if ( feed != null ) {
            // out.println(feed);

Examples of com.volantis.synergetics.cornerstone.stack.ArrayListStack.push()

            // Calculate the path to this element for debugging.
            Node parent = node;
            Stack stack = new ArrayListStack();
            do {
                stack.push(parent);
                parent = parent.getParent();
            } while (parent != null);

            // Remove the fake parent node if there is one.
            Node top = (Node) stack.peek();

Examples of com.volantis.synergetics.cornerstone.stack.Stack.push()

        if (scopeStack == null) {
            scopeStack = new ArrayListStack();
            type2ScopeStack.put(definitionType, scopeStack);
        }
        DefinitionScope scope = new DefinitionScopeImpl(definitionType);
        scopeStack.push(scope);
        return scope;
    }

    // Javadoc inherited.

Examples of de.danielbechler.diff.differ.DifferProvider.push()

        circularReferenceService,
        circularReferenceService,
        inclusionService,
        returnableNodeService,
        introspectionService);
    differProvider.push(new BeanDiffer(differDispatcher, introspectionService, returnableNodeService, comparisonService, introspectionService));
    differProvider.push(new CollectionDiffer(differDispatcher, comparisonService));
    differProvider.push(new MapDiffer(differDispatcher, comparisonService));
    differProvider.push(new PrimitiveDiffer(comparisonService));
    for (final DifferFactory differFactory : differFactories)
    {

Examples of de.esoco.j2me.util.IntArray.push()

      aRecords   = rRecordStore.enumerateRecords(null, null, false);
      aRecordIDs = new Vector(nRecords);

      // insert first element as a root that is not part of the RecordStore
      aIDs.push(-1);
      aRecordIDs.insertElementAt(new NodeRecordIDs(-1, -1), 0);

      while (aRecords.hasNextElement())
      {
        // read all record IDs and store them in ascending order;

Examples of de.odysseus.calyxo.panels.PanelsContext.push()

//        log.debug("path " + path);

        PanelsContext context = support.getOrCreateContext(request, locale);

//        log.debug("push " + panel.getName());
        context.push(panel);

        // add dispatch parameters to current panel
//        Iterator params = dispatch.getParamConfigs();
//        while (params.hasNext()) {
//          ParamConfig param = (ParamConfig)params.next();

Examples of ec.util.Parameter.push()

                Parameter p_subPops = new Parameter("pop.subpops");
                int numSubPops = parameters.getInt(p_subPops,null);
                for (int subPop = 0; subPop < numSubPops; ++subPop)
                    {
                    SubpopulationPanel subPopPane = new SubpopulationPanel(Console.this, subPop);
                    subPopPane.setup(Console.this.state,p_subPops.push(""+subPop));
                    inspectionPane.add("SubPop "+subPop, subPopPane);
                    addListener(subPopPane);
                    }
                }
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.