Examples of create()


Examples of org.openqreg.bean.VarintervalBean.create()

      if (stop != null && !stop.equals("")) {
        varIntervalBean.setValidto(Converter.stringToSqlDate(stop));
      }

      varIntervalBean.setOrdernumber(new Integer(orderNr));
      varIntervalBean.create(con);
      orderNr++;
    }
  }

  private void saveServices(Connection con, Long autoId, String elementId,

Examples of org.openqreg.bean.VarscriptBean.create()

      varScriptBean.setId(elementId);
      varScriptBean.setScriptname(scriptName);

      varScriptBean.setOrdernumber(new Integer(orderNr));
      varScriptBean.setScriptvalue(scriptValue);
      varScriptBean.create(con);
      orderNr++;
    }
  }

  private void saveIntervals(Connection con, Long autoId, String elementId,

Examples of org.openqreg.bean.VarserviceBean.create()

      varServiceBean.setAutoid(autoId);
      varServiceBean.setId(elementId);
      varServiceBean.setService(node.getText().trim());

      varServiceBean.setOrdernumber(new Integer(orderNr));
      varServiceBean.create(con);
      orderNr++;
    }
  }

  /**
 

Examples of org.openscience.cdk.smiles.SmilesGenerator.create()

        e.printStackTrace();
      }
            this.mol=sw.toString();
            SmilesGenerator sg=SmilesGenerator.isomeric();
            try {
                smiles = sg.create(tocopy);
            } catch (CDKException ex) {
                logger.error("Could not create SMILES: ", ex.getMessage());
                logger.debug(ex);   
            }
            // SVG output

Examples of org.ops4j.pax.url.mvn.MvnURLConnectionFactory.create()

                    final String repositoryName;
                    final InputStream stream;
                    if (repository.startsWith(FeaturesLabelProvider.MVN_URL_PREFIX)) {
                        final MvnURLConnectionFactory urlConnectionFactory = new MvnURLConnectionFactory(mvnConfiguration);
                        stream = urlConnectionFactory.create(new URL(repository)).getInputStream();

                        final String[] repositoryComponents = repository.split("/"); //$NON-NLS-1$
                        repositoryName = repositoryComponents[1] + "-" + repositoryComponents[2]; //$NON-NLS-1$
                    } else {
                        stream = new URL(repository).openStream();

Examples of org.ow2.cmi.controller.factory.ClusterViewManagerFactory.create()

            ClusterViewManagerFactory clusterViewManagerFactory = ClusterViewManagerFactory.getFactory();

            // Start the manager
            try {
                this.clusterViewManager = (ServerClusterViewManager) clusterViewManagerFactory.create();
            } catch (Exception e) {
                this.logger.error("Cannot retrieve the CMI Server", e);
                throw new EZBComponentException("Cannot retrieve the CMI Server", e);
            }
            if (this.clusterViewManager != null

Examples of org.pentaho.reporting.engine.classic.core.elementfactory.CrosstabBuilder.create()

      {
        final String column = (String) otherFieldsModel.get(other);
        builder.addOtherDimension(column);
      }

      final CrosstabGroup crosstabGroup = builder.create();
      optionsPane.setValuesOnGroup(crosstabGroup);
      return crosstabGroup;
    }
    finally
    {

Examples of org.pentaho.reporting.engine.classic.core.metadata.ElementMetaData.create()

      missingProperties.clear();

      try
      {
        final Object type = metaData.create();
      }
      catch (InstantiationException e)
      {
        logger.warn("Expression class is null");

Examples of org.pentaho.reporting.engine.classic.core.metadata.ElementType.create()

    }

    try
    {
      final ElementType type = metaData.create();
      final Element visualElement = (Element) type.create();
      if (visualElement instanceof SubReport)
      {
        final Element rootBand = findRootBand(band);
        if (rootBand == null ||
            rootBand instanceof PageHeader ||

Examples of org.pentaho.reporting.engine.classic.core.metadata.ExpressionMetaData.create()

      }

      if (expression == null ||
          ObjectUtilities.equal(selectedItem.getExpressionType(), expression.getClass()) == false)
      {
        setExpression(selectedItem.create());
      }
    }
  }

  private static class ExpressionEditorWrapper extends JComponent
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.