1   package sample;
2   
3   
4   import demoRunner.DemoRunner;
5   
6   /**
7    * Ajetaan tämän paketin demo-ohjelmia.
8    * @author vesal
9    */
10  public class Demo {
11      /**
12       * Main method to run demos.
13       * 
14       * @param args
15       *            list of command line arguments as strings.
16       */
17      public static void main(String[] args) {
18          DemoRunner.run(args,"sample","Demo");
19      }
20  
21  }
22