blob: cf5eec2e6663c0a573b657c9e681ac6ed76dc757 (
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
|
package uk.org.ury.show.viewer;
import uk.org.ury.frontend.FrontendControlPanel;
/**
* Control panel for the demo system.
*
* @author Matt Windsor
*
*/
public class LibraryControlPanel extends FrontendControlPanel
{
public
LibraryControlPanel ()
{
super ("library_control_panel.xml");
}
/**
* Go back to the previous module.
*/
public void
back ()
{
master.restoreModule (parent, prevCPanel);
}
}
|