01: package CVS_Server.Projects;
02:
03: /**
04: * The view which belongs to and is hold from the
05: * ProjectManager.
06: *
07: * There is ONE projectmanager and ONE view in this server.
08: *
09: */
10:
11: import java.awt.*;
12: import javax.swing.*;
13:
14: import Schmortopf.Utility.gui.EFCNToolGradientPanel;
15:
16: public class ProjectManagerView extends EFCNToolGradientPanel {
17:
18: public ProjectManagerView() {
19:
20: super (new BorderLayout(),
21: EFCNToolGradientPanel.ApplyVerticalHighLight,
22: EFCNToolGradientPanel.MediumGradientStrength,
23: EFCNToolGradientPanel.ActiveTitleBackground);
24:
25: } // Constructor
26:
27: } // ProjectManagerView
|