Examples of create()


Examples of org.thechiselgroup.choosel.core.client.visualization.resolvers.ui.VisualItemValueResolverUIControllerFactory.create()

        VisualItemValueResolverUIControllerFactory uiFactory = uiProvider
                .get(currentResolver.getId());

        assert uiFactory != null;

        return uiFactory.create(
                slotMappingConfigurationUIModel.getManagedSlotMapping(slot),
                slotMappingConfigurationUIModel.getVisualItems());
    }

    private LightweightList<String> getProperties(

Examples of org.timedex.dao.impl.PageMetaDAOImpl.create()

                    / linksOut.size();
            }

            if (meta == null) {
              meta = new PageMeta(p, new Date(0), 0, rank);
              pageMetaDAO.create(meta);
            } else
              pageMetaDAO.updatePageRank(meta, rank);

            sessionStrategy.commitTransaction();
           

Examples of org.timedex.dao.interfaces.PageMetaDAO.create()

                    / linksOut.size();
            }

            if (meta == null) {
              meta = new PageMeta(p, new Date(0), 0, rank);
              pageMetaDAO.create(meta);
            } else
              pageMetaDAO.updatePageRank(meta, rank);

            sessionStrategy.commitTransaction();
           

Examples of org.timepedia.chronoscope.client.data.DatasetFactory.create()

      request.setDomain(pair.domain);
      request.addRangeTupleSlice(pair.range);
      request.setIdentifier("col" + i);
      request.setRangeLabel(label);
      request.setAxisId(units);
      ds[numCols++] = dsFactory.create(request);

      if (dataset2Column != null) {
        dataset2Column.put(numCols - 1, i);
      }
    }

Examples of org.tmatesoft.hg.internal.BundleGenerator.create()

      HgBundle b = null;
      if (!outgoing.isEmpty()) {
        //
        // prepare bundle
        BundleGenerator bg = new BundleGenerator(implRepo);
        File bundleFile = bg.create(outgoing.asList());
        progress.worked(20);
        b = new HgLookup(repo.getSessionContext()).loadBundle(bundleFile);
        //
        // send changes
        remoteRepo.unbundle(b, comparator.getRemoteHeads());

Examples of org.tomighty.io.Directory.create()

  }

    public Directory plugins() {
        File path = new File(configuration(), "plugins");
        Directory directory = new FileSystemDirectory(path);
        directory.create();
        return directory;
    }

}

Examples of org.tomighty.io.FileSystemDirectory.create()

  }

    public Directory plugins() {
        File path = new File(configuration(), "plugins");
        Directory directory = new FileSystemDirectory(path);
        directory.create();
        return directory;
    }

}

Examples of org.uengine.persistence.processdefinition.ProcessDefinitionRepositoryHomeLocal.create()

      ProcessDefinitionRepositoryLocal pdr = null;
     
      try {
        pdr = pdhr.findByNameSameLevel(folderName, new Long(parentFolder), "folder");
      } catch (Exception e) {
        pdr = pdhr.create(UniqueKeyGenerator.issueProcessDefinitionKey(getTransactionContext()));
        pdr.setName(folderName);
        pdr.setParentFolder(new Long(parentFolder));
        pdr.setIsFolder(true);
        pdr.setObjType("folder");
      }

Examples of org.uengine.persistence.processdefinitionversion.ProcessDefinitionVersionRepositoryHomeLocal.create()

         
        }       
      }
     
      if(pdvr==null){
        pdvr = pdvhr.create(new Long(pdvid));
        pdvr.setVer(new Long(version));
        pdvr.setDefId(new Long(belongingPdid));
        pdvr.setDefName(name);
      }
     

Examples of org.vfny.geoserver.wms.responses.legend.raster.ColorMapLegendCreator.Builder.create()

            // check the additional options before proceeding
            cmapLegendBuilder.checkAdditionalOptions();

            // instantiate the creator
            cMapLegendCreator = cmapLegendBuilder.create();

        } else
            cMapLegendCreator = null;

    }
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.