Package org.axsl.fo.fo.prop

Examples of org.axsl.fo.fo.prop.ColorPa


     * @return The color of this Area.
     */
    public Color getColor() {
        final Fo generatedBy = this.traitGeneratedBy();
        if (generatedBy instanceof ColorPa) {
            final ColorPa coloredFo = (ColorPa) generatedBy;
            return coloredFo.traitColor(this);
        }
        return this.getParent().getColor();
    }
View Full Code Here

TOP

Related Classes of org.axsl.fo.fo.prop.ColorPa

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.