Examples of create()


Examples of org.eclipse.jst.jsf.core.jsflibraryregistry.internal.PluginProvidedJSFLibraryCreationHelper2.create()

      IExtension[] extensions = point.getExtensions();
      for (int i=0;i < extensions.length;i++){
        IExtension ext = extensions[i];
        for (int j=0;j < ext.getConfigurationElements().length;j++){
          PluginProvidedJSFLibraryCreationHelper2 newLibCreator = new PluginProvidedJSFLibraryCreationHelper2(ext.getConfigurationElements()[j]);           
          JSFLibrary newLib = newLibCreator.create();
         
          /**
           * Additional check on if a plug-in contributes jsflibraries is an expanded folder.
           * Fix related to bug 144954. 
           *
 

Examples of org.eclipse.jst.tapestry.core.internal.tapestrylibraryregistry.internal.PluginProvidedTapestryLibraryCreationHelper2.create()

      IExtension[] extensions = point.getExtensions();
      for (int i=0;i < extensions.length;i++){
        IExtension ext = extensions[i];
        for (int j=0;j < ext.getConfigurationElements().length;j++){
          PluginProvidedTapestryLibraryCreationHelper2 newLibCreator = new PluginProvidedTapestryLibraryCreationHelper2(ext.getConfigurationElements()[j]);           
          TapestryLibrary newLib = newLibCreator.create();
         
          /**
           * Additional check on if a plug-in contributes jsflibraries is an expanded folder.
           * Fix related to bug 144954. 
           *
 

Examples of org.eclipse.jst.tapestry.core.tapestrylibraryregistry.PluginProvidedTapestryLibraryCreationHelper.create()

      IExtension[] extensions = point.getExtensions();
      for (int i=0;i < extensions.length;i++){
        IExtension ext = extensions[i];
        for (int j=0;j < ext.getConfigurationElements().length;j++){
          PluginProvidedTapestryLibraryCreationHelper newLibCreator = new PluginProvidedTapestryLibraryCreationHelper(ext.getConfigurationElements()[j]);           
          TapestryLibrary newLib = newLibCreator.create();
         
          if (newLib != null ) //&& isJSFLibinExpandedFolder(newLib))
            tapestryLibraryRegistry.addTapestryLibrary(newLib);
        }
      }

Examples of org.eclipse.m2e.core.project.IMavenProjectRegistry.create()

  private void setProjectConfiguration(
      ILaunchConfigurationWorkingCopy workingCopy, IContainer basedir) {
    IMavenProjectRegistry projectRegistry = MavenPlugin.getMavenProjectRegistry();
    IFile pomFile = basedir
        .getFile(new Path(IMavenConstants.POM_FILE_NAME));
    IMavenProjectFacade projectFacade = projectRegistry.create(pomFile,
        false, new NullProgressMonitor());
    if (projectFacade != null) {
      ResolverConfiguration configuration = projectFacade
          .getResolverConfiguration();

Examples of org.eclipse.persistence.internal.expressions.CompoundExpression.create()

            this.currentNode = baseIn.getFirstChild().in(((SubQueryImpl) value).subQuery);
            if (this.parentNode != null) {
                if (this.parentNode.isCompoundExpression()) {
                    CompoundExpression logExp = (LogicalExpression) this.parentNode;
                    if (logExp.getFirstChild() == baseIn) {
                        logExp.create(this.currentNode, logExp.getSecondChild(), logExp.getOperator());
                    } else {
                        logExp.create(logExp.getFirstChild(), this.currentNode, logExp.getOperator());
                    }
                } else {
                    FunctionExpression funcExp = (FunctionExpression) this.parentNode;

Examples of org.eclipse.persistence.internal.expressions.FunctionExpression.create()

        }else{
            vParameters.add(params);
        }
        ExpressionOperator anOperator = geom1.getOperator(operator);
        FunctionExpression expression = new FunctionExpression();
        expression.create(geom1, vParameters, anOperator);
        Expression finalExpression = expression.equal("TRUE");
        return finalExpression;
    }
}

Examples of org.eclipse.persistence.jpa.rs.PersistenceContext.create()

                }
            }
        }

        // No sequencing in relationships, we can create the object now...
        app.create(getMatrixParameters(uriInfo, persistenceUnit), entity);
        ResponseBuilder rb = Response.status(Status.CREATED);
        rb.entity(new StreamingOutputMarshaller(app, entity, hh.getAcceptableMediaTypes()));
        return rb.build();
    }

Examples of org.eclipse.php.internal.ui.dialogs.saveFiles.SaveAsDialog.create()

    final IEditorInput input = getEditorInput();

    IDocumentProvider provider = getDocumentProvider();
    SaveAsDialog dialog = new SaveAsDialog(shell);
    dialog.setOriginalName(input.getName());
    dialog.create();

    if (dialog.open() == Window.CANCEL) {
      if (progressMonitor != null)
        progressMonitor.setCanceled(true);
      return;

Examples of org.eclipse.rap.rwt.internal.protocol.IClientObject.create()

  @Override
  public void renderInitialization( Widget widget ) throws IOException {
    Video video = ( Video ) widget;
    IClientObject clientObject = ClientObjectFactory.getClientObject( video );
    clientObject.create( TYPE );
    clientObject.set( PARENT, WidgetUtil.getId( video.getParent() ) );
    clientObject.set( VIDEO_URL, video.getURL().toString() );
  }

  @Override

Examples of org.eclipse.sapphire.modeling.Status.CompositeStatusFactory.create()

        for( Rule rule : this.rules )
        {
            factory.merge( rule.validation() );
        }
       
        return factory.create();
    }

    @Override
    public void dispose()
    {
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.