view
Class AlignViewProps

java.lang.Object
  extended by view.AlignViewProps
All Implemented Interfaces:
java.lang.Cloneable

public class AlignViewProps
extends java.lang.Object
implements java.lang.Cloneable

Defines the view properties for the alignment.


Constructor Summary
AlignViewProps(AlignObject alObj)
          Constructor for the alignment view properties
 
Method Summary
 java.lang.Object clone()
           
 AlignObject getAlObj()
          Returns the alignment object
 int getCharHeight()
          Returns the char height.
 int getCharWidth()
          Returns the char width.
 java.awt.Font getFont()
          Returns the font object
 int getXEnd()
          Returns the x end position.
 int getXStart()
          Returns the x start position.
 int getYEnd()
          Returns the y end position.
 int getYStart()
          Returns the y start position.
 void init()
          Initializes the alignment view propierties.
 void setAlObj(AlignObject alObj)
          Sets the alignment object
 void setCharHeight(int height)
          Sets the char height.
 void setCharWidth(int width)
          Sets the char width.
 void setFont(java.awt.Font font)
          Sets the font object and does some font metrics stuff.
 void setXEnd(int x_end)
          Sets the x end position.
 void setXStart(int x_start)
          Sets the x start position.
 void setYEnd(int y_end)
          Sets the y end position.
 void setYStart(int y_start)
          Sets the y start position.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AlignViewProps

public AlignViewProps(AlignObject alObj)
Constructor for the alignment view properties

Parameters:
alObj -
Method Detail

init

public void init()
Initializes the alignment view propierties.


getAlObj

public AlignObject getAlObj()
Returns the alignment object

Returns:
alObj AlignObject

setAlObj

public void setAlObj(AlignObject alObj)
Sets the alignment object

Parameters:
alObj -

getXStart

public int getXStart()
Returns the x start position.

Returns:
x_start

setXStart

public void setXStart(int x_start)
Sets the x start position.

Parameters:
x_start -

getXEnd

public int getXEnd()
Returns the x end position.

Returns:
x_end

setXEnd

public void setXEnd(int x_end)
Sets the x end position.

Parameters:
x_end -

getYStart

public int getYStart()
Returns the y start position.

Returns:
y_start

setYStart

public void setYStart(int y_start)
Sets the y start position.

Parameters:
y_start -

getYEnd

public int getYEnd()
Returns the y end position.

Returns:
y_end

setYEnd

public void setYEnd(int y_end)
Sets the y end position.

Parameters:
y_end -

getFont

public java.awt.Font getFont()
Returns the font object

Returns:
font Font

setCharWidth

public void setCharWidth(int width)
Sets the char width.

Parameters:
width -

getCharWidth

public int getCharWidth()
Returns the char width.

Returns:
charWidth

setCharHeight

public void setCharHeight(int height)
Sets the char height.

Parameters:
height -

getCharHeight

public int getCharHeight()
Returns the char height.

Returns:
charHeight

setFont

public void setFont(java.awt.Font font)
Sets the font object and does some font metrics stuff.

Parameters:
font -

clone

public java.lang.Object clone()
Overrides:
clone in class java.lang.Object