initial import
[iDMC.git] / src / java / org / tsho / dmc2 / ui / PlotComponent.java
blobe41d4b8bc1f35b1d78369b5a7594c358cc7c1d27
1 /*
2 * iDMC the interactive Dynamical Model Calculator simulates and performs
3 * graphical and numerical analysis of systems of differential and
4 * difference equations.
6 * Copyright (C) 2004 Marji Lines and Alfredo Medio.
8 * Written by Daniele Pizzoni <auouo@tin.it>.
9 * Extended by Alexei Grigoriev <alexei_grigoriev@libero.it>.
13 * The software program was developed within a research project financed
14 * by the Italian Ministry of Universities, the Universities of Udine and
15 * Ca'Foscari of Venice, the Friuli-Venezia Giulia Region.
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or any
20 * later version.
22 * This program is distributed in the hope that it will be useful, but
23 * WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 * General Public License for more details.
27 package org.tsho.dmc2.ui;
29 import java.io.IOException;
31 import javax.swing.JMenu;
32 import javax.swing.JPanel;
33 import javax.swing.JToolBar;
35 /**
36 * @author tsho
38 * To change the template for this generated type comment go to
39 * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
41 public interface PlotComponent {
43 JPanel getPanel();
45 JMenu getOptionsMenu();
46 JMenu getCommandMenu();
47 JMenu getPlotMenu();
48 JMenu getSamplesMenu();
50 JToolBar getStatusBar();
51 JToolBar getToolBar();
53 void saveImageAs() throws IOException;
54 void saveDataAs() throws IOException;
56 void dispose();