1 package org.jgnuplot;
    2 
    3 /**
    4  * This class executes ALL demos in this directory, in functionality order.
    5  *
    6  * @author Pander
    7  */
    8 public final class AllDem {
    9    private AllDem() {
   10    }
   11 
   12    public static void main(String[] args) {
   13       SimpleDem.gnuplot();
   14       ControlsDem.gnuplot();
   15       ElectronDem.gnuplot();
   16       UsingDem.gnuplot();
   17       FillStyleDem.gnuplot();
   18       // mgr.dem
   19       // fit.dem
   20       ParamDem.gnuplot();
   21       PolarDem.gnuplot();
   22    }
   23 }