Examples of create()


Examples of de.scoopgmbh.copper.monitoring.client.ui.adaptermonitoring.result.animation.AdapterAnimationCreator.create()

        if (timeline.getStatus()!=Status.RUNNING){
          // lazy init cause else annimation pane is not layouted
          timeline.getKeyFrames().clear();
          annimationPane.getChildren().clear();
          final AdapterAnimationCreator adapterAnimationCreator = new AdapterAnimationCreator(annimationPane, timeline);
          adapterAnimationCreator.create(adapterInputTable.getItems(), adapterOutputLaunchTable.getItems(),
              adapterOutputNotifyTable.getItems());
         
          slider.setMax(timeline.getTotalDuration().toMillis());
         
          Bindings.unbindBidirectional(positionLabel.textProperty(), slider.valueProperty());

Examples of de.willuhn.jameica.hbci.synchronize.SynchronizeBackend.create()

      Class<SynchronizeJobSepaUeberweisung> type = SynchronizeJobSepaUeberweisung.class;

      BeanService bs = Application.getBootLoader().getBootable(BeanService.class);
      SynchronizeEngine engine   = bs.get(SynchronizeEngine.class);
      SynchronizeBackend backend = engine.getBackend(type,konto);
      SynchronizeJob job         = backend.create(type,konto);
     
      job.setContext(SynchronizeJob.CTX_ENTITY,u);
     
      backend.execute(Arrays.asList(job));
    }

Examples of de.yaams.extensions.basemap.tiled.mapeditor.dialogs.NewMapDialog.create()

  }

  @Override
  protected void doPerformAction() {
    NewMapDialog nmd = new NewMapDialog(YaFrame.get());
    Map newMap = nmd.create();
    if (newMap != null) {
      editor.setCurrentMap(newMap);
    }
  }
}

Examples of de.yaams.extensions.basemap.tiled.mapeditor.dialogs.NewTilesetDialog.create()

      BrushDialog bd = new BrushDialog(this, YaFrame.get(), currentBrush);
      bd.setVisible(true);
    } else if (command.equals(Resources.getString("menu.tilesets.new"))) {
      if (currentMap != null) {
        NewTilesetDialog dialog = new NewTilesetDialog(YaFrame.get(), currentMap);
        TileSet newSet = dialog.create();
        if (newSet != null) {
          currentMap.addTileset(newSet);
        }
      }
    } else if (command.equals(Resources.getString("menu.tilesets.import"))) {

Examples of dynaop.InterceptorFactory.create()

        Mock methodInterceptorMock = mock(MethodInterceptor.class);

        pico.registerComponentInstance("interceptorComponentKey", methodInterceptorMock.proxy());

        InterceptorFactory interceptorFactory = new ContainerSuppliedInterceptorFactory(pico, "interceptorComponentKey");
        Interceptor interceptor = interceptorFactory.create(null);
        assertNotNull(interceptor);

        // verify that the dynaop interceptor delegates to the MethodInterceptor
        // in the container:
        methodInterceptorMock.expects(once()).method("invoke");

Examples of dynaop.MixinFactory.create()

public class InstanceMixinFactoryTestCase extends TestCase {

    public void testCreate() {
        Object instance = "foo";
        MixinFactory factory = new InstanceMixinFactory(instance);
        assertSame(instance, factory.create(null));
    }

    public void testPropertiesNotNull() {
        MixinFactory factory = new InstanceMixinFactory("foo");
        assertNotNull(factory.getProperties());

Examples of easyJ.business.proxy.SingleDataProxy.create()

        pr.setBadNum(new Long("0"));
        pr.setProblemChange("N");
        pr.setIsoverdue("N");
        try {

            sdp.create(pr);
            returnMessage = "create_problemreason_success**"
                    + pr.getProblemreasonContent();
        } catch (EasyJException e) {
            returnMessage = "create_problemreason_failure**";
        }

Examples of easyJ.database.session.Session.create()

    public Object create(Object o) throws EasyJException {
        Session session = null;
        try {
            session = SessionFactory.openSession();
            o = session.create(o);
            return o;
        } finally {
            if (session != null)
                session.close();
        }

Examples of edu.gmu.seor.prognos.unbbayesplugin.cps.datastructure.EDBUnit.create()

    node.create("CPT");
    node.create("SCRIPT");
    node.create("EQUATION");
    node.create("OLD_BEL");
    node.create("BEL");  
    info.create("KIND");
    info.create("DESCRIPTION");
    info.create("TYPE")
    info.create("SEARCH_FLAG");
    return node;
  }

Examples of edu.indiana.extreme.xbaya.gpel.script.BPELScript.create()

                return;
            }

            try {
                // Generate a BPEL process.
                bpel.create(BPELScriptType.GPEL);
                this.workflow.setGpelProcess(bpel.getGpelProcess());
                this.workflow.setWorkflowWSDL(bpel.getWorkflowWSDL()
                        .getWsdlDefinitions());
            } catch (GraphException e) {
                this.engine.getErrorWindow().error(
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.