1 41 package org.jfree.util; 42 43 49 public interface ExtendedConfiguration extends Configuration 50 { 51 57 public boolean isPropertySet (String name); 58 59 66 public int getIntProperty (String name); 67 68 76 public int getIntProperty (String name, int defaultValue); 77 78 85 public boolean getBoolProperty (String name); 86 87 96 public boolean getBoolProperty (String name, boolean defaultValue); 97 } 98 | Popular Tags |