Package org.apache.fop.fo.properties

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


        m.addKeyword("right", "100% 50%");
        m.addKeyword("center", "50% 50%");
        m.addKeyword("top", "50% 0%");
        m.addKeyword("bottom", "50% 100%");
        m.setDefault("0% 0%");
        m.setDatatypeParser(new BackgroundPositionShorthandParser());
        addPropertyMaker("background-position", m);

        // border
        m  = new ListProperty.Maker(PR_BORDER);
        m.setInherited(false);
View Full Code Here


        m.addKeyword("right", "100% 50%");
        m.addKeyword("center", "50% 50%");
        m.addKeyword("top", "50% 0%");
        m.addKeyword("bottom", "50% 100%");
        m.setDefault("0% 0%");
        m.setDatatypeParser(new BackgroundPositionShorthandParser());
        addPropertyMaker("background-position", m);

        // border
        m  = new ListProperty.Maker(PR_BORDER);
        m.setInherited(false);
View Full Code Here

        m.setInherited(false);
        m.addKeyword("left", "0% 50%");
        m.addKeyword("center", "50% 50%");
        m.addKeyword("right", "100% 50%");
        m.setDefault("0% 0%");
        m.setDatatypeParser(new BackgroundPositionShorthandParser());
        addPropertyMaker("background-position", m);

        // border
        m  = new ListProperty.Maker(PR_BORDER);
        m.setInherited(false);
View Full Code Here

TOP

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

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.