View Javadoc

1   /*
2    * 
3    * 
4    */
5   package oscon2006.web.mdb;
6   
7   import wicket.markup.html.panel.Panel;
8   import com.healthmarketscience.jackcess.*;
9   
10  public class MdbTablePanel extends Panel
11  {
12  	public MdbTablePanel(String id, Table t)
13  	{
14  		super(id);
15  		
16  		this.add(new DataTable("datatable", t, 5000));
17  	}
18  }