01: package com.xoetrope.xbb;
02:
03: import com.xoetrope.swing.XBaseTable;
04: import java.awt.Color;
05: import net.xoetrope.xui.style.XStyle;
06:
07: /**
08: * A welcome page for XBB. The page performs some inital setup for languages
09: * and database loading
10: *
11: * <p> Copyright (c) Xoetrope Ltd., 2001-2007, This software is licensed under
12: * the GNU Public License (GPL), please see license.txt for more details. If
13: * you make commercial use of this software you must purchase a commercial
14: * license from Xoetrope.</p>
15: * @author luano
16: */
17: public class AccountSummary extends XbbBodyPage {
18: XBaseTable summaryTable;
19:
20: /** Creates a new instance of Welcome */
21: public AccountSummary() {
22: }
23:
24: public void pageCreated() {
25: displayVersion();
26:
27: // XStyle altStyle = project.getStyleManager().getStyle( "table/alt" );
28: // Color altUnselectedForeground = altStyle.getStyleAsColor( XStyle.COLOR_FORE );
29: // Color altUnselectedBackground = altStyle.getStyleAsColor( XStyle.COLOR_BACK );
30: // summaryTable.setAltUnselectedColors( altUnselectedForeground, altUnselectedBackground );
31: }
32: }
|