Index: trunk/src/tmcsim/client/ClockView.java
===================================================================
--- trunk/src/tmcsim/client/CADClockView.java	(revision 62)
+++ trunk/src/tmcsim/client/ClockView.java	(revision 64)
@@ -16,7 +16,8 @@
  * The CADClientView class is the view component to the CAD Client application.
  *
+ * @author jdalbey
  */
 @SuppressWarnings("serial")
-public class CADClockView extends JFrame
+public class ClockView extends JFrame
 {
     /**
@@ -26,12 +27,12 @@
     private JPanel mainPane;
     private JLabel currentTime;
+    private final static Dimension SCREEN_SIZE = new Dimension(1100, 255);
 
     /**
      * Constructor. Build panes, add key listeners, and set up observer
-     * relationship between the footer and main panes.
-     *
-     * @param position The CAD position for this client terminal.
+     * relationship between the footer and main panes. TODO: Consider having
+     * screen size and font size in properties file.
      */
-    public CADClockView()
+    public ClockView()
     {
         super("Simulation Clock");
@@ -41,7 +42,7 @@
         currentTime.setFont(new Font("Geneva", Font.BOLD, 200));
         mainPane = new JPanel();
-        setSize(new Dimension(1100, 255));
-        setMaximumSize(new Dimension(1100, 255));
-        setMinimumSize(new Dimension(1100, 255));
+        setSize(SCREEN_SIZE);
+        setMaximumSize(SCREEN_SIZE);
+        setMinimumSize(SCREEN_SIZE);
         mainPane.setLayout(new BoxLayout(mainPane, BoxLayout.Y_AXIS));
         mainPane.setBorder(BorderFactory.createLineBorder(Color.black));
