Class CLIP

java.lang.Object
  extended by CLIP

public class CLIP
extends java.lang.Object

This is the main class of the CLIP system. It contains the main method and is responsible for creating the frame that the applications runs in.


Field Summary
(package private) static int defaultHeight
          Default Height of frame.
(package private) static int defaultWidth
          Default Width of frame.
(package private) static int defaultXLoc
          Default x location of frame.
(package private) static int defaultYLoc
          Default y location of frame.
(package private) static CLIPFrame mainFrame
          The frame that the program runs in.
 
Constructor Summary
CLIP()
           
 
Method Summary
static void main(java.lang.String[] args)
          This is the main method of the program.
static void maximizeFrame()
          This function maximizes the mainFrame.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

mainFrame

static CLIPFrame mainFrame
The frame that the program runs in.

See Also:
CLIPFrame

defaultXLoc

static final int defaultXLoc
Default x location of frame.

See Also:
Constant Field Values

defaultYLoc

static final int defaultYLoc
Default y location of frame.

See Also:
Constant Field Values

defaultWidth

static final int defaultWidth
Default Width of frame.

See Also:
Constant Field Values

defaultHeight

static final int defaultHeight
Default Height of frame.

See Also:
Constant Field Values
Constructor Detail

CLIP

public CLIP()
Method Detail

main

public static void main(java.lang.String[] args)
This is the main method of the program. It is responsible for creating the CLIPFrame and setting it to visible.

See Also:
CLIPFrame

maximizeFrame

public static void maximizeFrame()
This function maximizes the mainFrame.