1 42 43 package org.jfree.util; 44 45 import java.io.Serializable ; 46 import java.util.Iterator ; 47 import java.util.Enumeration ; 48 49 54 public interface Configuration extends Serializable , Cloneable { 55 56 63 public String getConfigProperty(String key); 64 65 77 public String getConfigProperty(String key, String defaultValue); 78 79 85 public Iterator findPropertyKeys(String prefix); 86 87 92 public Enumeration getConfigProperties(); 93 94 101 public Object clone() throws CloneNotSupportedException ; 102 103 } 104 | Popular Tags |