org.concord.biologica.ui
Class CellLine

java.lang.Object
  |
  +--org.concord.biologica.ui.CellLine

public final class CellLine
extends java.lang.Object

CellLine has the information necessary to draw a line to represent a portion of a cell boundary. This is used by the MeiosisModel code to help views paint the cell boundary during meiosis.

Version:
$Revision: 1.1.1.1 $ $Date: 2001/04/28 00:39:17 $
Author:
$Author: ed $

Constructor Summary
CellLine()
          Create a new CellLine
CellLine(int x1, int y1, int x2, int y2)
          Create a new CellLine
 
Method Summary
 int getX1()
          Return x1
 int getX2()
          Return x2
 int getY1()
          Return y1
 int getY2()
          Return y2
 void setValues(int x1, int y1, int x2, int y2)
          Set values
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CellLine

public CellLine()
Create a new CellLine

CellLine

public CellLine(int x1,
                int y1,
                int x2,
                int y2)
Create a new CellLine
Method Detail

setValues

public void setValues(int x1,
                      int y1,
                      int x2,
                      int y2)
Set values

getX1

public int getX1()
Return x1

getY1

public int getY1()
Return y1

getX2

public int getX2()
Return x2

getY2

public int getY2()
Return y2