List of usage examples for javax.swing JTabbedPane WRAP_TAB_LAYOUT
int WRAP_TAB_LAYOUT
To view the source code for javax.swing JTabbedPane WRAP_TAB_LAYOUT.
Click Source Link
From source file:net.sourceforge.msscodefactory.cffreeswitch.v2_0.CFFswSwing.CFFswSwingFSSFConferenceEltJTabbedPane.java
public CFFswSwingFSSFConferenceEltJTabbedPane(ICFFswSwingSchema argSchema, ICFFswFSSFConferenceObj argFocus) { super(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); }//from w w w. j a va 2 s.c om // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; setSwingFocusAsFSSFConference(argFocus); // Wire the newly constructed JPanels/Tabs to this JTabbedPane addTab(LABEL_TabComponentsProfileList, getTabViewComponentsProfileListJPanel()); swingIsInitializing = false; }
From source file:net.sourceforge.msscodefactory.cfensyntax.v2_1.CFEnSyntaxSwing.CFEnSyntaxSwingServiceTypeEltJTabbedPane.java
public CFEnSyntaxSwingServiceTypeEltJTabbedPane(ICFEnSyntaxSwingSchema argSchema, ICFEnSyntaxServiceTypeObj argFocus) { super(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); }//from www . j av a 2s . c o m // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; setSwingFocusAsServiceType(argFocus); // Wire the newly constructed JPanels/Tabs to this JTabbedPane addTab(LABEL_TabChildrenDeployedList, getTabViewChildrenDeployedListJPanel()); swingIsInitializing = false; }
From source file:net.sourceforge.msscodefactory.cffreeswitch.v2_0.CFFswSwing.CFFswSwingMajorVersionEltJTabbedPane.java
public CFFswSwingMajorVersionEltJTabbedPane(ICFFswSwingSchema argSchema, ICFFswMajorVersionObj argFocus) { super(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); }//from w ww .j av a 2 s .c o m // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; setSwingFocusAsMajorVersion(argFocus); // Wire the newly constructed JPanels/Tabs to this JTabbedPane addTab(LABEL_TabComponentsMinorVersionList, getTabViewComponentsMinorVersionListJPanel()); swingIsInitializing = false; }
From source file:net.sourceforge.msscodefactory.cfasterisk.v2_4.CFAsteriskSwing.CFAsteriskSwingClusterEltJTabbedPane.java
public CFAsteriskSwingClusterEltJTabbedPane(ICFAsteriskSwingSchema argSchema, ICFSecurityClusterObj argFocus) { super(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); }/*from ww w .ja v a 2s. c o m*/ // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; setSwingFocusAsCluster(argFocus); // Wire the newly constructed JPanels/Tabs to this JTabbedPane addTab(LABEL_TabComponentsHostNodeList, getTabViewComponentsHostNodeListJPanel()); addTab(LABEL_TabComponentsTenantList, getTabViewComponentsTenantListJPanel()); addTab(LABEL_TabComponentsSecAppList, getTabViewComponentsSecAppListJPanel()); addTab(LABEL_TabComponentsSecGroupList, getTabViewComponentsSecGroupListJPanel()); addTab(LABEL_TabComponentsSysClusterList, getTabViewComponentsSysClusterListJPanel()); swingIsInitializing = false; }
From source file:net.sourceforge.msscodefactory.cfgcash.v2_0.CFGCashSwing.CFGCashSwingISOCurrencyEltJTabbedPane.java
public CFGCashSwingISOCurrencyEltJTabbedPane(ICFGCashSwingSchema argSchema, ICFGCashISOCurrencyObj argFocus) { super(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); }//from w ww . j a v a 2s .c om // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; setSwingFocusAsISOCurrency(argFocus); // Wire the newly constructed JPanels/Tabs to this JTabbedPane addTab(LABEL_TabChildrenCountryList, getTabViewChildrenCountryListJPanel()); swingIsInitializing = false; }
From source file:net.sourceforge.msscodefactory.cfgcash.v2_0.CFGCashSwing.CFGCashSwingISOLanguageEltJTabbedPane.java
public CFGCashSwingISOLanguageEltJTabbedPane(ICFGCashSwingSchema argSchema, ICFGCashISOLanguageObj argFocus) { super(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); }/*w ww . j av a2s . c o m*/ // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; setSwingFocusAsISOLanguage(argFocus); // Wire the newly constructed JPanels/Tabs to this JTabbedPane addTab(LABEL_TabChildrenCountryList, getTabViewChildrenCountryListJPanel()); swingIsInitializing = false; }
From source file:net.sourceforge.msscodefactory.cfgcash.v2_0.CFGCashSwing.CFGCashSwingServiceTypeEltJTabbedPane.java
public CFGCashSwingServiceTypeEltJTabbedPane(ICFGCashSwingSchema argSchema, ICFGCashServiceTypeObj argFocus) { super(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); }// w w w . j av a 2 s . co m // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; setSwingFocusAsServiceType(argFocus); // Wire the newly constructed JPanels/Tabs to this JTabbedPane addTab(LABEL_TabChildrenDeployedList, getTabViewChildrenDeployedListJPanel()); swingIsInitializing = false; }
From source file:net.sourceforge.msscodefactory.cfgcash.v2_0.CFGCashSwing.CFGCashSwingSubProjectEltJTabbedPane.java
public CFGCashSwingSubProjectEltJTabbedPane(ICFGCashSwingSchema argSchema, ICFGCashSubProjectObj argFocus) { super(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); }//from w w w.j a va 2s . c o m // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; setSwingFocusAsSubProject(argFocus); // Wire the newly constructed JPanels/Tabs to this JTabbedPane addTab(LABEL_TabComponentsMajorVersionList, getTabViewComponentsMajorVersionListJPanel()); swingIsInitializing = false; }
From source file:net.sourceforge.msscodefactory.cfgcash.v2_0.CFGCashSwing.CFGCashSwingRealProjectEltJTabbedPane.java
public CFGCashSwingRealProjectEltJTabbedPane(ICFGCashSwingSchema argSchema, ICFGCashRealProjectObj argFocus) { super(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); }/* www .j a v a 2s . com*/ // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; setSwingFocusAsRealProject(argFocus); // Wire the newly constructed JPanels/Tabs to this JTabbedPane addTab(LABEL_TabComponentsMajorVersionList, getTabViewComponentsMajorVersionListJPanel()); swingIsInitializing = false; }
From source file:net.sourceforge.msscodefactory.cffreeswitch.v2_4.CFFreeSwitchSwing.CFFreeSwitchSwingClusterEltJTabbedPane.java
public CFFreeSwitchSwingClusterEltJTabbedPane(ICFFreeSwitchSwingSchema argSchema, ICFSecurityClusterObj argFocus) { super(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT); final String S_ProcName = "construct-schema-focus"; if (argSchema == null) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1, "argSchema"); }//from w w w . ja v a 2s .c om // argFocus is optional; focus may be set later during execution as // conditions of the runtime change. swingSchema = argSchema; setSwingFocusAsCluster(argFocus); // Wire the newly constructed JPanels/Tabs to this JTabbedPane addTab(LABEL_TabComponentsHostNodeList, getTabViewComponentsHostNodeListJPanel()); addTab(LABEL_TabComponentsTenantList, getTabViewComponentsTenantListJPanel()); addTab(LABEL_TabComponentsSecAppList, getTabViewComponentsSecAppListJPanel()); addTab(LABEL_TabComponentsSecGroupList, getTabViewComponentsSecGroupListJPanel()); addTab(LABEL_TabComponentsSysClusterList, getTabViewComponentsSysClusterListJPanel()); swingIsInitializing = false; }