1 package jimm.datavision.gui.applet; 2 import javax.swing.JApplet ; 3 4 10 public class DVApplet extends JApplet { 11 12 protected static final String COLUMN_PARAM_DELIM = ";"; 13 14 protected DesignApplet designer; 15 16 public void init() { 17 designer = new DesignApplet(this); 18 } 19 20 25 String getReportURL() { 26 return getParameter("report-url"); 27 } 28 29 34 String getSaveURL() { 35 return getParameter("save-url"); 36 } 37 38 } 39 | Popular Tags |