01: /***************************************************************************************
02: * File Info: $Id: AxisChartTabs.java,v 1.1 2003/08/09 17:07:23 nathaniel_auvil Exp $
03: *
04: * Description:
05: *
06: * Last Reviewed: NEVER
07: * Maintainer: Nathaniel Auvil
08: * Copyright: <copyright.icore>
09: ***************************************************************************************/package org.krysalis.jcharts.designer.tabs.axisChart;
10:
11: import org.krysalis.jcharts.designer.tabs.TopLevelTabs;
12:
13: import javax.swing.*;
14:
15: public class AxisChartTabs extends JTabbedPane {
16:
17: private TopLevelTabs topLevelTabs;
18:
19: /*******************************************************************************
20: *
21: * @param topLevelTabs
22: ******************************************************************************/
23: public AxisChartTabs(TopLevelTabs topLevelTabs) {
24: this .topLevelTabs = topLevelTabs;
25: this .topLevelTabs.addTab("Axis Charts", this);
26: }
27:
28: }
|