View Javadoc
1 /* 2 * Angkor Web Framework 3 * 4 * Distributable under LGPL license. 5 * See terms of license at gnu.org. 6 */ 7 8 package com.tirsen.angkor.table; 9 10 import com.tirsen.angkor.View; 11 import com.tirsen.angkor.widget.ValueModel; 12 13 import java.io.Serializable; 14 15 16 /*** 17 * @author $Author: tirsen $ 18 * @version $Revision: 1.3 $ 19 * <BR> 20 * $Id: TableCellViewFactory.java,v 1.3 2002/10/07 19:49:20 tirsen Exp $ 21 */ 22 public interface TableCellViewFactory extends Serializable 23 { 24 /*** 25 * @param table 26 * @param value, the value from the model, if there is no value from the model <code>null</code> 27 * @param row 28 * @param column 29 */ 30 View getTableCellView(Table table, ValueModel value, int row, int column); 31 }

This page was automatically generated by Maven