blob: 6012f228080e0cf44de2f760b42f9f8140b711b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/**
*
*/
package uk.org.ury.frontend;
import javax.swing.JPanel;
/**
* A frontend user interface panel.
*
* All frontend user interfaces should subclass this as their main
* interface space, so that frontend panels can include each other
* and panels can be embedded into application frames or applets.
*
* @author Matt Windsor
*
*/
public abstract class FrontendPanel extends JPanel
{
/**
*
*/
private static final long serialVersionUID = 5616222530691425635L;
public
FrontendPanel ()
{
super ();
}
}
|