blob: b5b55b6d6264848acdd7d09b2aa4b18288bdfe21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package uk.org.ury.frontend;
/**
* An abstract implementation of the FrontendModule interface.
*
* @author Matt Windsor
*
*/
public abstract class AbstractFrontendModule implements FrontendModule
{
/**
*
*/
private static final long serialVersionUID = 5309585577127763538L;
/* Space for rent */
}
|