blob: 99ff9cf3ca461520b3478a109f09b86e272daa29 (
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
|
package uk.org.ury.frontend;
import javax.swing.JApplet;
/**
* An abstract implementation of the FrontendModule interface.
*
* @author Matt Windsor
*
*/
public abstract class AbstractFrontendModule extends JApplet implements FrontendModule
{
/**
*
*/
private static final long serialVersionUID = 5309585577127763538L;
/**
* Initialise the module as an applet.
*/
public abstract void
init ();
}
|