KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > java2html > properties > demo > AllDemos


1 package de.java2html.properties.demo;
2
3 import de.jdemo.framework.DemoSuite;
4 import de.jdemo.framework.IDemo;
5
6 /**
7  * @author Markus Gebhard
8  */

9 public class AllDemos {
10
11   public static IDemo suite() {
12     DemoSuite suite = new DemoSuite("Demo for de.java2html.properties.demo"); //$NON-NLS-1$
13
//$JDemo-BEGIN$
14
suite.addDemo(new DemoSuite(ConversionOptionsPropertiesWriterDemo.class));
15     //$JDemo-END$
16
return suite;
17   }
18 }
19
Popular Tags