View Javadoc

1   /*
2    * 
3    * 
4    */
5   package oscon2006.web;
6   
7   import com.healthmarketscience.jackcess.Database;
8   import wicket.markup.html.basic.Label;
9   import oscon2006.web.mdb.MdbTabbedPanel;
10  
11  /**
12   * 
13   * 
14   * Display contents of an MDB file
15   * 
16   *
17   */
18  public class DisplayMdbPage extends BasePage
19  {
20  	
21  	public DisplayMdbPage(String filename, Database db)
22  	{
23  		this.add(new Label("message", "Filename: " + filename));
24  
25  		this.add(new MdbTabbedPanel("mdb", db));
26  		
27  	}
28  	
29  }