Package org.axsl.graphic.output

Examples of org.axsl.graphic.output.GraphicJava2d


            final Rectangle2D.Float clipRectangle) {
        if (! graphic.canMakeGraphicOutput(Mime.JAVA2D.getMimeString())) {
            /* TODO: Consider logging/displaying a warning. */
            return;
        }
        final GraphicJava2d output = (GraphicJava2d) graphic.getGraphicOutput(
                Mime.JAVA2D.getMimeString());
        try {
            output.drawGraphic(this.graphics, contentRectangle);
        } catch (final GraphicException e) {
            /* TODO: Consider logging/displaying a warning. */
        }
    }
View Full Code Here

TOP

Related Classes of org.axsl.graphic.output.GraphicJava2d

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.