View Javadoc

1   package org.glassbox;
2   
3   import java.io.IOException;
4   
5   /***
6      A theme builder builds a <code>ThemeProperties</code> instance from
7      a resource defining the properties of the application's theme.
8      @author Tilman Linden
9    */
10  public interface ThemeBuilder {
11      ThemeProperties build() throws IOException;
12  }