Examples of create()


Examples of org.woped.editor.controller.vc.EditorVC.create()

      switch (event.getOrder())
      {
      // Petrinet
      case AbstractViewEvent.ADD_PLACE:
        map.setType(AbstractPetriNetElementModel.PLACE_TYPE);
        editor.create(map);
        break;
      case AbstractViewEvent.ADD_TRANSITION:
        map.setType(AbstractPetriNetElementModel.TRANS_SIMPLE_TYPE);
        editor.create(map);
        break;

Examples of org.wso2.carbon.cloud.csg.CSGProxyService.create()

     * @param metaData meta data associated with this proxy
     * @throws CSGException throws in case of an error
     */
    public void deployProxy(ServiceMetaData metaData) throws CSGException {
        CSGProxyService csgProxyService = new CSGProxyServiceConfigLayer().getCSGServiceProxy();
        if (csgProxyService.create(metaData)) {
            if (log.isDebugEnabled()) {
                log.debug("Proxy service,'" + metaData.getServiceName() + "Proxy" + "'" +
                        " deployed successfully");
            }
        } else {

Examples of org.xeustechnologies.jcl.JclObjectFactory.create()

        //  Extracting class from the JAR
        JclObjectFactory factory = JclObjectFactory.getInstance();

        //  This is application object
        instance = factory.create(jcl, className);
    }

    public String getName() {
        return name;
    }

Examples of org.xooof.xmldispatcher.interfaces.ejb.XMLDispatcherHome.create()

      {
        XMLDispatcherHome xdhome = (XMLDispatcherHome)
          PortableRemoteObject.narrow(
            getJndiContext().lookup(homeJndiName),
            XMLDispatcherHome.class);
        xd = xdhome.create();
      }
    }
    catch(Exception e)
    {
      throw new RemoteException("Caught exception while trying to connect to XMLDispatcher",e);

Examples of org.zanata.rest.service.ResourceUtils.create()

    @SuppressWarnings("unchecked")
    public void beforeMethod() {
        SeamAutowire.instance().reset();
        MockitoAnnotations.initMocks(this);
        ResourceUtils resourceUtils = new ResourceUtils();
        resourceUtils.create(); // postConstruct
        TransUnitTransformer transUnitTransformer =
                SeamAutowire.instance().use("resourceUtils", resourceUtils)
                        .autowire(TransUnitTransformer.class);
        // @formatter:off
      handler = SeamAutowire.instance()

Examples of pdp.scrabble.ihm.MultiplayerConnectDialog.create()

  public void connect() {
    MultiplayerConnectDialog dialog =
      new MultiplayerConnectDialog(this.mainFrame, this);

    dialog.create();
  }

  public boolean connectTo(String host, String port)
  throws RemoteException, NotBoundException, MalformedURLException {

Examples of pdp.scrabble.ihm.NewGameSelection.create()

  }

  /** Start a new game (call selection). */
  public void newGame() {
    NewGameSelection newGameSelection = new NewGameSelection(this.mainFrame);
    newGameSelection.create();

    this.dateString = DateString.get();
    this.mainFrame.setEnabled(false);
  }

Examples of pl.net.bluesoft.rnd.pt.ext.jbpm.BpmTaskFactory.create()

        
         HistoryTaskInstanceImpl taskInstance = (HistoryTaskInstanceImpl)resultRow[0];
         ProcessInstance processInstance = (ProcessInstance)resultRow[1];
        
         /* Map process and jbpm task to system's bpm task */
         BpmTask task = taskFactory.create(taskInstance, processInstance);
        
         result.add(task);
       }
      
       return result;

Examples of playRepository.GitRepository.create()

                StringUtils.removeStart(pullRequest.fromBranch, "refs/heads/"), "2.txt");
    }

    private void initRepository(Project project, String branchName, String fileName) throws Exception {
        GitRepository gitRepository = new GitRepository(project);
        gitRepository.create();

        Repository repository = GitRepository.buildMergingRepository(project);
        Git git =  new Git(repository);

        FileUtils.touch(new File(GitRepository.getDirectoryForMerging(project.owner, project.name + "/" + fileName)));

Examples of ptolemy.caltrop.ddi.DDIFactory.create()

    private DDI _getDDI(Environment env) {
        DDIFactory pluginFactory = (DDIFactory) _directorToDDIMap
                .get(getDirector().getClass().getName());

        if (pluginFactory != null) {
            return pluginFactory.create(this, _actor, _theContext, env);
        } else {
            // default to Dataflow case.
            return new Dataflow(this, _actor, _theContext, env);
        }
    }
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.