ColorTheme load/save
[nikiroo-utils.git] / demos / Demo1.java
index 94f0e9f22ce2ebfdc1cc63593adcb50075b372c7..6f4869ae6c8100644b0fac8ae6c9d45ae227acc6 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA
  */
+
+import jexer.bits.*;
 import jexer.TApplication;
 
 /**
  * The demo application itself.
  */
 class DemoApplication extends TApplication {
+    /**
+     * Public constructor
+     */
+    public DemoApplication() {
+       try {
+           ColorTheme theme = new ColorTheme();
+       } catch (Exception e) {
+           e.printStackTrace();
+       }
+    }
 }
 
 /**