edu.udo.cs.yale.gui.attributeeditor
Class CellEditors

java.lang.Object
  extended by edu.udo.cs.yale.gui.attributeeditor.CellEditors

public class CellEditors
extends java.lang.Object

A generic collection class for cell editors. This class manages a vector containing the cell editors for each row, i.e. a vector of a vector of cell editors.

Version:
$Id: CellEditors.java,v 1.2 2006/08/03 14:39:30 ingomierswa Exp $
Author:
Ingo Mierswa

Field Summary
private  java.util.List<java.util.List<javax.swing.table.TableCellEditor>> cellEditors
           
 
Constructor Summary
CellEditors(int size)
          Creates a new cell editor collection.
 
Method Summary
 void add(int row, javax.swing.table.TableCellEditor editor)
          Adds a new cell editor in the given row.
 javax.swing.table.TableCellEditor get(int row, int column)
          Returns the cell renderer in the given row and column.
 int getSize()
          Returns the number of rows.
 int getSize(int i)
          Returns the size of the i-th row.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

cellEditors

private java.util.List<java.util.List<javax.swing.table.TableCellEditor>> cellEditors
Constructor Detail

CellEditors

public CellEditors(int size)
Creates a new cell editor collection.

Method Detail

add

public void add(int row,
                javax.swing.table.TableCellEditor editor)
Adds a new cell editor in the given row.


get

public javax.swing.table.TableCellEditor get(int row,
                                             int column)
Returns the cell renderer in the given row and column.


getSize

public int getSize()
Returns the number of rows.


getSize

public int getSize(int i)
Returns the size of the i-th row.



Copyright © 2001-2006