Examples of copyData()


Examples of com.asakusafw.bulkloader.exporter.ExportDataCopy.copyData()

                        exporterBean.getBatchId(),
                        exporterBean.getJobflowId(),
                        exporterBean.getJobflowSid(),
                        exporterBean.getExecutionId());
                ExportDataCopy copy = createExportDataCopy();
                if (!copy.copyData(exporterBean)) {
                    throw new BulkLoaderSystemException(getClass(), "TG-RECOVERER-01012",
                            exporterBean.getTargetName(),
                            exporterBean.getBatchId(),
                            exporterBean.getJobflowId(),
                            exporterBean.getJobflowSid(),
View Full Code Here

Examples of com.heatonresearch.aifh.examples.ca.mergelife.physics.MergePhysics.copyData()

        final int width = getWidth() / this.zoom;
        final int height = getHeight() / this.zoom;

        final Universe universe = new Universe(height, width, 3);
        final Physics physics = new MergePhysics(universe);
        physics.copyData(this.sourceData);
        universe.randomize(this.rnd);
        this.runner = new UniverseRunner(universe, physics);
        this.visual = new UniverseVisualizer(universe, this.zoom);

        if (!this.running) {
View Full Code Here

Examples of com.heatonresearch.aifh.examples.ca.mergelife.physics.Physics.copyData()

        final int width = getWidth() / this.zoom;
        final int height = getHeight() / this.zoom;

        final Universe universe = new Universe(height, width, 3);
        final Physics physics = new MergePhysics(universe);
        physics.copyData(this.sourceData);
        universe.randomize(this.rnd);
        this.runner = new UniverseRunner(universe, physics);
        this.visual = new UniverseVisualizer(universe, this.zoom);

        if (!this.running) {
View Full Code Here

Examples of com.sleepycat.je.tree.LN.copyData()

            newLsn = ln.modify(newData, databaseImpl, newKey, oldLsn, locker,
                               repContext);

            /* Return a copy of resulting data, if requested. [#16932] */
            if (returnNewData != null) {
                returnNewData.setData(ln.copyData());
            }

            /*
             * Update the parent BIN.  Update the data-as-key, if changed, for
             * a DBIN. [#15704]
View Full Code Here

Examples of java.awt.image.BufferedImage.copyData()

            /* Placeholder */
        }

        BufferedImage img = cloneImage(paint.getImage());

        WritableRaster ras = img.copyData(null);

        final int miX = ras.getMinX();
        final int miY = ras.getMinY();
        final int maY = ras.getMinY() + ras.getHeight();

View Full Code Here

Examples of java.awt.image.RenderedImage.copyData()

        SeekableStream ss = SeekableStream.wrapInputStream(fileURL.openStream(),
                true);
        XTIFFImageDecoder xtffImageDecoder = new XTIFFImageDecoder(ss, new XTIFFDecodeParam());
        RenderedImage ri = xtffImageDecoder.decodeAsRenderedImage();
        BufferedImage bi = new BufferedImage(ri.getColorModel(), ri.copyData(null), false, new Hashtable());
        ss.close();
        return bi;
    }

    /**
 
View Full Code Here

Examples of java.awt.image.RenderedImage.copyData()

            throw new IOException("Couldn't render Stream");
       
        BufferedImage img = new BufferedImage(red.getWidth(),
                                              red.getHeight(),
                                              BufferedImage.TYPE_INT_ARGB);
        red.copyData(img.getRaster());
        return img;
    }
}
View Full Code Here

Examples of java.awt.image.RenderedImage.copyData()

                                   new Object[]{url.toString()}));
       
        BufferedImage img = new BufferedImage(red.getWidth(),
                                              red.getHeight(),
                                              BufferedImage.TYPE_INT_ARGB);
        red.copyData(img.getRaster());

        return img;
    }

    /**
 
View Full Code Here

Examples of java.awt.image.RenderedImage.copyData()

                                   new Object[]{url.toString()}));
       
        BufferedImage img = new BufferedImage(red.getWidth(),
                                              red.getHeight(),
                                              BufferedImage.TYPE_INT_ARGB);
        red.copyData(img.getRaster());

        return img;
    }

    /**
 
View Full Code Here

Examples of java.awt.image.RenderedImage.copyData()

                            new ICC_ColorSpace(iccProf), cm.hasAlpha(), cm
                                    .isAlphaPremultiplied(), cm
                                    .getTransparency(), cm.getTransferType());
                    WritableRaster wr = Raster.createWritableRaster(imageData
                            .getSampleModel(), null);
                    imageData.copyData(wr);
                    try {
                        BufferedImage bi = new BufferedImage(cm2, wr, cm2
                                .isAlphaPremultiplied(), null);
                        imageData = bi;
                        cm = cm2;
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.