// // $Id: PagedProperties.java,v 1.2 2005/09/14 15:15:26 ylafon Exp $ // From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr) // // (c) COPYRIGHT MIT and INRIA, 1997. // Please first read the full copyright statement in file COPYRIGHT.html package org.w3c.css.properties.paged; import java.net.URL; import org.w3c.css.properties.css1.CssProperty; import org.w3c.css.util.Utf8Properties; /** * @version $Revision: 1.2 $ */ public class PagedProperties { public static Utf8Properties properties; public static String getString(CssProperty property, String prop) { return properties.getProperty(property.getPropertyName() + "." + prop); } public static boolean getInheritance(CssProperty property) { return getString(property, "inherited").equals("true"); } static { Utf8Properties properties = new Utf8Properties(); try { URL url = PagedProperties.class .getResource("PagedDefault.properties"); properties.load(url.openStream()); } catch (Exception e) { System.err .println("org.w3c.css.properties.paged.PagedProperties: couldn't load properties "); System.err.println(" " + e.toString()); } } }