/*
 * NAME
 *	$RCSfile: TableVecRec.java,v $ - 
 * DESCRIPTION
 *	[given below in javadoc format]
 * DELTA
 *	$Revision: 1.2 $
 * CREATED
 *	$Date: 2002/03/26 18:21:02 $ by birgit
 * COPYRIGHT
 *	West Consulting bv
 * TO DO
 *	
 */

package tablelayout;

/**
 * Contains information of the size of one table cell
 *
 * @see tablelayout.TableLayout
 * @author Birgit Arkesteijn
 * @version $Revision: 1.2 $ $Date: 2002/03/26 18:21:02 $
 */
public class TableVecRec extends Object
{
  private static final String     version_id =
      "@(#)$Id: TableVecRec.java,v 1.2 2002/03/26 18:21:02 tonyj Exp $ Copyright West Consulting bv";

  /**
   * the preferred value of the cell
   */
  public int	pref_value;	

  /**
   * the upper left corner of the cell
   */
  public int	offset;		

  /**
   * the options that should be applied to the entire column or row
   */
  public int  	options;	

  /**
   * the width of column, or the height of the row
   */
  public int	value;		

  /**
   *
   */

  public TableVecRec ()
  {
    pref_value = 0;
    offset     = 0;
    options    = 0;
    value      = 0;
  }

  /**
   * Returns the String representation
   */
  public String toString()
  {
    return (
	"TableVecRec [" +
    	"options " 	+ options +
	" value " 	+ value +
	" pref_value " 	+ pref_value +
	" offset " 	+ offset +
	"]");
  }
}
