Examples of perform()


Examples of collage.utils.SimulatedAnnealing.perform()

        SimulatedAnnealing sa = new SimulatedAnnealing(1000000, 0.00001, 0.99);
       
        SecondaryImagesConverter sic = new SecondaryImagesConverter(file);
        List<FeatureSet> candidates = sic.convertToFeatures(cellDim);
       
        List<Cell> srcCells = sa.perform(img, cellDim, candidates);

        NearestNeighbour nn = new NearestNeighbour();
        FeatureSet nearest;
        List<Cell> newCells = new ArrayList<Cell>();
       
View Full Code Here

Examples of com.alibaba.citrus.service.uribroker.interceptor.URIBrokerPathInterceptor.perform()

                if (entry.getKey() instanceof URIBrokerPathInterceptor) {
                    URIBrokerPathInterceptor interceptor = (URIBrokerPathInterceptor) entry.getKey();
                    Integer value = entry.getValue();

                    if (value != null && value.intValue() == 1) {
                        path = interceptor.perform(this, path);
                    }
                }
            }
        }
View Full Code Here

Examples of com.eviware.soapui.impl.wsdl.actions.iface.tools.wsi.WSIAnalyzeAction.perform()

          wsiPanel.revalidate();
          saveWsiReportAction.setEnabled( true );
        }
      };

      action.perform( getModelItem(), null );
    }
  }

  private class WSIOptionsAction extends AbstractAction
  {
View Full Code Here

Examples of com.exedosoft.plat.agent.Task.perform()

    Message aMsg = null;
    for (Iterator it = this.getTasks().iterator(); it.hasNext();) {

      Task aTask = (Task) it.next();
      try {
        aMsg = aTask.perform(this.message);
        OutPool.getPool().addMessage(message.getCommandID(), aMsg);
      } catch (Exception e) {
        System.out.println("?惗??丆惓嵼夞?丅丅丅丅丅丅丅");
        for (Iterator<Task> itFail = excuteOverList.iterator(); itFail
            .hasNext();) {
View Full Code Here

Examples of com.exedosoft.wf.wfi.NodeInstance.perform()

    }
    NodeInstance ni = NodeInstance.getNodeInstanceByID(ptNI.getCorrInstance().getUid());
    WFUtil.refreshWFPara(ni.getProcessInstance());
   
    try {
      ni.perform();
    } catch (WFException e) {
       this.setEchoValue(e.getLocalizedMessage());
       return null;
    }
    return DEFAULT_FORWARD;
View Full Code Here

Examples of com.google.dart.engine.internal.task.AnalysisTask.perform()

    if (TRACE_PERFORM_TASK) {
      System.out.println(taskDescription);
    }
    long performStart = System.currentTimeMillis();
    try {
      task.perform(resultRecorder);
    } catch (ObsoleteSourceAnalysisException exception) {
      AnalysisEngine.getInstance().getLogger().logInformation(
          "Could not perform analysis task: " + taskDescription,
          exception);
    } catch (AnalysisException exception) {
View Full Code Here

Examples of com.google.devtools.moe.client.directives.Directive.perform()

      parser.printUsage(System.err);
      System.exit(parseError ? 1 : 0);
    }

    try {
      int result = d.perform();
      Ui.Task terminateTask = AppContext.RUN.ui.pushTask(
          Ui.MOE_TERMINATION_TASK_NAME, "Final clean-up");
      AppContext.RUN.fileSystem.cleanUpTempDirs();
      AppContext.RUN.ui.popTask(terminateTask, "");
      System.exit(result);
View Full Code Here

Examples of com.habitsoft.kiyaa.metamodel.Action.perform()

      this.addChangeListener(new ChangeListener() {
        public void onChange(Widget sender) {
          final String value = getValue();
          if(actions.containsKey(value)) {
            Action action = (Action)actions.get(value);
            action.perform(new AsyncCallback<Void>() {
              public void onSuccess(Void result) {
              }
              public void onFailure(Throwable caught) {
                GWT.log("Action "+value+" failed: "+caught, caught);
              }
View Full Code Here

Examples of com.hp.hpl.jena.gvs.Store.perform()

    Date date2 = dateFormat.parse("20050608");
    Date date3 = dateFormat.parse("20060912");
    clock.setTime(date1);
    store.assertGraph(source, new FCAGraphImpl(model));
    clock.setTime(date2);
    store.perform(source, new StoreTransaction() {

      public void execute(SourceStoreView storeView) {
        storeView.revokeAll();
       
      }
View Full Code Here

Examples of com.iCo6.command.Handler.perform()

            handler = Commands.getHandler();

        if(handler == null) return false;

        try {
            return handler.perform(sender, Commands.getArguments());
        } catch (InvalidUsage ex) {
            Messaging.send(sender, ex.getMessage());
            return false;
        }
    }
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.