Examples of performOperation()


Examples of org.eclipse.jst.jsf.validation.internal.el.operators.UnaryOperator.performOperation()

                        final int length = node.getLastToken().endColumn - firstToken.beginColumn+1;
                        _reporter.report(diagnostic, offset, length);
                    }

                    ((EvaluationTracker)data).
                    setType(unaryOp.performOperation ((ValueType)type));
                }
                // cannot apply operations to method bindings
                else
                {
                    final int offset = _context.getDocumentPosition() +
View Full Code Here

Examples of org.encog.ml.ea.opp.EvolutionaryOperator.performOperation()

            this.parents[1] = chooseParent();
          }

          // success, perform crossover
          if (this.parents[0] != this.parents[1]) {
            opp.performOperation(this.rnd, this.parents, 0,
                this.children, 0);
          }
        } else {
          // clone a child (asexual reproduction)
          opp.performOperation(this.rnd, this.parents, 0,
View Full Code Here

Examples of org.encog.ml.ea.opp.EvolutionaryOperator.performOperation()

            opp.performOperation(this.rnd, this.parents, 0,
                this.children, 0);
          }
        } else {
          // clone a child (asexual reproduction)
          opp.performOperation(this.rnd, this.parents, 0,
              this.children, 0);
          this.children[0].setPopulation(this.parents[0]
              .getPopulation());
        }
View Full Code Here

Examples of org.openengsb.core.ekb.api.transformation.TransformationOperation.performOperation()

     */
    private void performTransformationStep(TransformationStep step) throws IllegalAccessException {
        try {
            TransformationOperation operation =
                operationLoader.loadTransformationOperationByName(step.getOperationName());
            Object value = operation.performOperation(getSourceFieldValues(step), step.getOperationParams());
            setObjectToTargetField(step.getTargetField(), value);
        } catch (TransformationStepException e) {
            LOGGER.debug(e.getMessage(), e);
        } catch (Exception e) {
            LOGGER.error("Unable to perform transformation step {}.", step, e);
View Full Code Here
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.