Examples of chain()


Examples of ca.weblite.objc.Client.chain()

    }
   
    @Msg(selector="startApplication", like="NSObject.finalize")
    public void startApplication(){
        Client c = getClient();
        Proxy app = c.chain("NSApplication", "sharedApplication");
      
        Proxy topLevelObjects = c.chain("NSMutableArray", "array");
       
       
        Proxy filesOwner = c.chain(
View Full Code Here

Examples of com.google.bitcoin.kits.WalletAppKit.chain()

        if (params == RegTestParams.get()) {
            appkit.connectToLocalHost();
        }
        appkit.setUserAgent("PayFile Server", "1.0").startAndWait();

        System.out.println(appkit.wallet().toString(false, true, true, appkit.chain()));

        ServerSocket socket = new ServerSocket(port);
        Socket clientSocket;
        do {
            clientSocket = socket.accept();
View Full Code Here

Examples of com.google.code.jqwicket.api.IJQStatement.chain()

  public void contributeInternal(JQHeaderContributionTarget target) {
    IJQFunction callback = this.callback();
    if (isNotEmpty(this.events) && callback != null) {
      IJQStatement stmt = $(this.component);
      for (IJQEvent e : this.events) {
        stmt.chain(e.getName(), callback);
      }
      target.addJQStatements(stmt);
    }
  }
View Full Code Here

Examples of de.agilecoders.wicket.jquery.JQuery.chain()

        JQuery script = $(this);

        if (config.isComponent()) {
            script.closest(".colorpicker-component");
        }
        script.chain("colorpicker", config);

        if (config.isAjaxUpdate()) {

            List<ColorChangeAjaxBehavior> behaviors = getBehaviors(ColorChangeAjaxBehavior.class);
            ColorChangeAjaxBehavior colorChangeAjaxBehavior = behaviors.get(0);
View Full Code Here

Examples of info.textgrid.lab.noteeditor.commands.AddCommand.chain()

  setConstraint.setLocation(rect);
  setConstraint.setPart(part);
  setConstraint.setLabel(MusicMessages.MusicXYLayoutEditPolicy_AddCommandLabelText);
  setConstraint.setDebugLabel("XYEP setConstraint");//$NON-NLS-1$
 
  Command cmd = add.chain(setConstraint);
  return cmd;
}

@Override
protected Command createChangeConstraintCommand(ChangeBoundsRequest request,
View Full Code Here

Examples of org.bitcoinj.kits.WalletAppKit.chain()

        // This app is mostly single threaded. It handles all requests and state changes on a single thread.
        // Speed should ideally not be an issue, as the backend blocks only rarely. If it's a problem then
        // we'll have to split the backend thread from the http server thread.
        AffinityExecutor.ServiceAffinityExecutor executor = new AffinityExecutor.ServiceAffinityExecutor("server");
        server.setExecutor(executor);
        LighthouseBackend backend = new LighthouseBackend(SERVER, kit.peerGroup(), kit.chain(), (PledgingWallet) kit.wallet(), executor);
        backend.setMinPeersForUTXOQuery(minPeersSupportingGetUTXO);
        server.createContext(LHUtils.HTTP_PATH_PREFIX, new ProjectHandler(backend));
        server.createContext("/", exchange -> {
            log.warn("404 Not Found: {}", exchange.getRequestURI());
            exchange.sendResponseHeaders(404, -1);
View Full Code Here

Examples of org.eclipse.gef.commands.Command.chain()

              DropObjectsRequest dropRequest,
              List<CreateViewRequest.ViewDescriptor> viewDescriptors) {
            Command command = createViewsAndArrangeCommand(
                dropRequest, viewDescriptors);
            if (command != null) {
              return command
                  .chain(new ICommandProxy(
                      new CismodelCreateShortcutDecorationsCommand(
                          getEditingDomain(),
                          (View) getModel(),
                          viewDescriptors)));
View Full Code Here

Examples of org.eclipse.gef.examples.logicdesigner.model.commands.AddCommand.chain()

  setConstraint.setLocation(rect);
  setConstraint.setPart(part);
  setConstraint.setLabel(LogicMessages.LogicXYLayoutEditPolicy_AddCommandLabelText);
  setConstraint.setDebugLabel("LogicXYEP setConstraint");//$NON-NLS-1$
 
  Command cmd = add.chain(setConstraint);
  cmd = chainGuideAttachmentCommand(request, part, cmd, true);
  cmd = chainGuideAttachmentCommand(request, part, cmd, false);
  cmd = chainGuideDetachmentCommand(request, part, cmd, true);
  return chainGuideDetachmentCommand(request, part, cmd, false);
}
View Full Code Here

Examples of org.eclipse.jst.pagedesigner.itemcreation.command.ContainerCreationCommand.chain()

                    command = new UserCustomizedContainerCreationCommand(position, parentTagIdentifier, _creationData.getTagId(), parentCustomizationData);
                    isFirstParent = false;
                }
                else
                {
                    command.chain(new UserCustomizedContainerCreationCommand(position, parentTagIdentifier, _creationData.getTagId(), parentCustomizationData));
                }
            }
            return command;
        }
        return null;
View Full Code Here

Examples of org.formulacompiler.compiler.CallFrame.chain()

          changed = true;
        }
      }
    }
    if (null != prev) {
      return prev.chain( _frame.getMethod(), args );
    }
    else if (changed) {
      return FormulaCompiler.newCallFrame( _frame.getMethod(), args );
    }
    return _frame;
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.