blob: c385f056b1ee789002f80e6c10c13c624a1b7db8 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
package uk.org.ury.show.viewer;
import uk.org.ury.frontend.FrontendControlPanel;
import uk.org.ury.frontend.exceptions.UICreationFailureException;
/**
* Control panel for the demo system.
*
* @author Matt Windsor
*
*/
public class LibraryControlPanel extends FrontendControlPanel
{
/**
*
*/
private static final long serialVersionUID = -4260057656619439704L;
/**
* Construct a new LibraryControlPanel.
*
* @throws UICreationFailureException if the UI creation fails.
*/
public
LibraryControlPanel ()
throws UICreationFailureException
{
super ("library_control_panel.xml");
}
/**
* Go back to the previous module.
*/
public void
back ()
{
master.restoreModule (parent, prevCPanel);
}
}
|