Package net.sf.gluebooster.java.booster.basic.container

Examples of net.sf.gluebooster.java.booster.basic.container.SimpleBoostedNode


   *            does the transformation need an input object
   * @return the created node
   */
  public static BoostedNode createNode(ObjectFactory transformation,
      boolean transformationNeedsObjectToTransform) throws Exception {
    SimpleBoostedNode result = new SimpleBoostedNode();
    setTransformation(result, transformation);
    if (transformation instanceof HasName) {
      result.getAttributes().setName(transformation);
    }
    if (transformationNeedsObjectToTransform) {
      result.createInPoint();
    }

    // every transformation has an outcome
    result.createOutPoint();
    return result;
  }
View Full Code Here

TOP

Related Classes of net.sf.gluebooster.java.booster.basic.container.SimpleBoostedNode

Copyright © 2018 www.massapicom. 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.