Package org.apache.fop.area.Trait

Examples of org.apache.fop.area.Trait.Color


                        //}
                    } else if (cl == Background.class) {
                        //String value = attributes.getValue(Trait.getTraitName(trait));
                        //if (value != null) {
                            Background bkg = new Background();
                            Color col = Color.valueOf(attributes.getValue("bkg-color"));
                            if (col != null) {
                                bkg.setColor(col);
                            }
                            String url = attributes.getValue("bkg-img");
                            if (url != null) {
View Full Code Here

TOP

Related Classes of org.apache.fop.area.Trait.Color

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.