Package org.apache.fop.fo.properties

Examples of org.apache.fop.fo.properties.ColorTypeProperty


                prop = new FixedLength(numPart.doubleValue(), unitPart);
            }
            break;

        case TOK_COLORSPEC:
            prop = new ColorTypeProperty(currentTokenValue);
            break;

        case TOK_FUNCTION_LPAR: {
            Function function =
                (Function)FUNCTION_TABLE.get(currentTokenValue);
View Full Code Here


        m  = new ColorTypeProperty.Maker(PR_BACKGROUND_COLOR) {
            protected Property convertPropertyDatatype(
                    Property p, PropertyList propertyList, FObj fo) {
                String nameval = p.getNCname();
                if (nameval != null) {
                    return new ColorTypeProperty(nameval);
                }
                return super.convertPropertyDatatype(p, propertyList, fo);
            }
        };
        m.useGeneric(genericColor);
View Full Code Here

TOP

Related Classes of org.apache.fop.fo.properties.ColorTypeProperty

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.