Examples of Transform


Examples of com.headius.invokebinder.transform.Transform

        assert type().equals(other.start);

        Binder newBinder = new Binder(this);

        for (ListIterator<Transform> iter = other.transforms.listIterator(other.transforms.size()); iter.hasPrevious(); ) {
            Transform t = iter.previous();
            newBinder.add(t);
        }

        return newBinder;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.algebra.Transform

    @Override
    public QueryIterator eval(Op op, DatasetGraph dsg, Binding initial, Context context)
    {
        // Extension point: access possible to all the parameters for execution.
        // Be careful to deal with initial bindings.
        Transform transform = new MyTransform() ;
        op = Transformer.transform(transform, op) ;
        return super.eval(op, dsg, initial, context) ;
    }
View Full Code Here

Examples of com.jclark.xsl.dom.Transform

public class XTTransformer extends AbstractActor implements Transformer, Status {

    public Document transform(Document document, String documentBase,
        Document sheet, String sheetBase, Document result, Dictionary params)
    throws Exception {
        Transform transformer = new XSLTransformEngine().createTransform(sheet);
        transformer.transform(document, result);
        return result;
    }
View Full Code Here

Examples of com.jme3.math.Transform

        BoundingVolume bound = ((Geometry) s).getModelBound();
        if(bound instanceof BoundingBox) {
          BoundingBox bb = ((BoundingBox) bound);
          WireBox b = new WireBox(bb.getXExtent(), bb.getYExtent(), bb.getZExtent());
          Geometry g = new Geometry(null, b);
          Transform t = s.getWorldTransform().clone();
//          Vector3f pos = t.getTranslation();
//          pos.addLocal(bb.getCenter());
//          t.setTranslation(pos);
          g.getLocalTransform().set(t);
          g.setMaterial(matWireframe);
View Full Code Here

Examples of com.l2jfrozen.gameserver.ai.special.Transform

   
    _log.info(" - Monastery");
    ThreadPoolManager.getInstance().scheduleAi(new Monastery(-1, "monastery", "ai"), 700);
   
    _log.info(" - Transform");
    ThreadPoolManager.getInstance().scheduleAi(new Transform(-1, "transform", "ai"), 800);
    _log.info(" - Fairy Trees");
    ThreadPoolManager.getInstance().scheduleAi(new FairyTrees(-1, "FairyTrees", "ai"), 900);
    _log.info(" - Summon Minions");
    ThreadPoolManager.getInstance().scheduleAi(new SummonMinions(-1, "SummonMinions", "ai"), 1000);
    _log.info(" - Zombie Gatekeepers");
View Full Code Here

Examples of com.mozilla.grouperfish.batch.transforms.Transform

        } catch (final Denied e) {
            throw Fail.hard(task, "Cannot create output directory.", e);
        }

        final TransformConfig config = task.transform();
        final Transform transform = transforms.get(config.transform());
        Assert.nonNull(transform);
        log.info(String.format("Launching transform '%s' with input directory '%s'", transform, inputDirectory));

        try {
            final TransformResult result = transform.run(task);
            if (result.success()) {
                log.info("Transform {} for task {} was run successfully.", transform, task);
            }
            else {
                final String message = String.format("Failed to run transform: %s (task %s)", transform, task);
View Full Code Here

Examples of com.sk89q.worldedit.math.transform.Transform

            return;
        }

        ClipboardHolder holder = session.getClipboard();
        Clipboard clipboard = holder.getClipboard();
        Transform transform = holder.getTransform();
        Clipboard target;

        // If we have a transform, bake it into the copy
        if (!transform.isIdentity()) {
            FlattenedClipboardTransform result = FlattenedClipboardTransform.transform(clipboard, transform, holder.getWorldData());
            target = new BlockArrayClipboard(result.getTransformedRegion());
            target.setOrigin(clipboard.getOrigin());
            Operations.completeLegacy(result.copyTo(target));
        } else {
View Full Code Here

Examples of com.sun.org.apache.xml.internal.security.transforms.Transform

         XMLSignatureInput output = input;
         Transforms transforms = this.getTransforms();

         if (transforms != null) {
            doTransforms: for (int i = 0; i < transforms.getLength(); i++) {
               Transform t = transforms.item(i);
               String URI = t.getURI();

               if (URI.equals(Transforms
                       .TRANSFORM_C14N_EXCL_OMIT_COMMENTS) || URI
                          .equals(Transforms
                             .TRANSFORM_C14N_EXCL_WITH_COMMENTS) || URI
                                .equals(Transforms
                                   .TRANSFORM_C14N_OMIT_COMMENTS) || URI
                                      .equals(Transforms
                                         .TRANSFORM_C14N_WITH_COMMENTS)) {

                  break doTransforms;
               }

               output = t.performTransform(output, null);
            }

            output.setSourceURI(input.getSourceURI());
         }
         return output;
View Full Code Here

Examples of com.sun.org.apache.xml.internal.security.transforms.Transform

         XMLSignatureInput nodes = this.getNodesetBeforeFirstCanonicalization();
         Set inclusiveNamespaces = new HashSet();

         {
            Transforms transforms = this.getTransforms();
            Transform c14nTransform = null;

            if (transforms != null) {
               doTransforms: for (int i = 0; i < transforms.getLength(); i++) {
                  Transform t = transforms.item(i);
                  String URI = t.getURI();

                  if (URI.equals(Transforms.TRANSFORM_C14N_EXCL_OMIT_COMMENTS)
                          || URI.equals(
                             Transforms.TRANSFORM_C14N_EXCL_WITH_COMMENTS)) {
                     c14nTransform = t;
View Full Code Here

Examples of com.sun.xml.ws.security.opt.crypto.dsig.Transform

            // policy creation
            Target target = new Target(Target.TARGET_TYPE_VALUE_URI, uri);
            SignatureTarget signTarget = new SignatureTarget(target);
            signTarget.setDigestAlgorithm(dm);
            for(int i = 0; tList != null &&  i < tList.size(); i++){
                Transform tr = (Transform) tList.get(i);
                SignatureTarget.Transform sTr = new SignatureTarget.Transform(tr.getAlgorithm());
                signTarget.addTransform(sTr);
            }
           
            fb.addTargetBinding(signTarget);
           
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.