Main Page | Packages | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

org.objectweb.cjdbc.console.wizard.objects.Backend Class Reference

List of all members.

Public Member Functions

void setConnectionManagers (Hashtable connectionManagers)
Hashtable getConnectionManagers ()
String getDynamicPrecision ()
void setDynamicPrecision (String dynamicPrecision)
String getGatherSystemTables ()
void setGatherSystemTables (String gatherSystemTables)
String getConnectionTestStatement ()
void setConnectionTestStatement (String connectionTestStatement)
String getDriver ()
void setDriver (String driver)
String getDriverPath ()
void setDriverPath (String driverPath)
String getName ()
void setName (String name)
String getUrl ()
void setUrl (String url)
String toString ()

Package Attributes

String name = WizardTranslate.get("label.backend.undefined")
String driver
String driverPath
String url
String connectionTestStatement
String dynamicPrecision
String gatherSystemTables = "false"
Hashtable connectionManagers = new Hashtable()

Detailed Description

A backend object. Used to transfer and collect backend data between forms

Author:
Nicolas Modrzyk
Version:
1.0

Definition at line 39 of file Backend.java.


Member Function Documentation

Hashtable org.objectweb.cjdbc.console.wizard.objects.Backend.getConnectionManagers  ) 
 

Returns the connectionManagers value.

Returns:
Returns the connectionManagers.

Definition at line 65 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.tab.BackendTab.actionPerformed(), org.objectweb.cjdbc.console.wizard.WizardTabs.exportDocumentToXml(), and org.objectweb.cjdbc.console.wizard.tab.BackendTab.itemStateChanged().

00066   {
00067     return connectionManagers;
00068   }

String org.objectweb.cjdbc.console.wizard.objects.Backend.getConnectionTestStatement  ) 
 

Returns the connectionTestStatement value.

Returns:
Returns the connectionTestStatement.

Definition at line 115 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.WizardTabs.exportDocumentToXml(), and org.objectweb.cjdbc.console.wizard.tab.BackendTab.itemStateChanged().

00116   {
00117     return connectionTestStatement;
00118   }

String org.objectweb.cjdbc.console.wizard.objects.Backend.getDriver  ) 
 

Returns the driver value.

Returns:
Returns the driver.

Definition at line 135 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.WizardTabs.exportDocumentToXml(), and org.objectweb.cjdbc.console.wizard.tab.BackendTab.itemStateChanged().

00136   {
00137     return driver;
00138   }

String org.objectweb.cjdbc.console.wizard.objects.Backend.getDriverPath  ) 
 

Returns the driverPath value.

Returns:
Returns the driverPath.

Definition at line 155 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.WizardTabs.exportDocumentToXml(), and org.objectweb.cjdbc.console.wizard.tab.BackendTab.itemStateChanged().

00156   {
00157     return driverPath;
00158   }

String org.objectweb.cjdbc.console.wizard.objects.Backend.getDynamicPrecision  ) 
 

Returns the dynamicPrecision value.

Returns:
Returns the dynamicPrecision.

Definition at line 75 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.WizardTabs.exportDocumentToXml(), and org.objectweb.cjdbc.console.wizard.tab.BackendTab.itemStateChanged().

00076   {
00077     return dynamicPrecision;
00078   }

String org.objectweb.cjdbc.console.wizard.objects.Backend.getGatherSystemTables  ) 
 

Returns the gatherSystemTables value.

Returns:
Returns the gatherSystemTables.

Definition at line 95 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.WizardTabs.exportDocumentToXml(), and org.objectweb.cjdbc.console.wizard.tab.BackendTab.itemStateChanged().

00096   {
00097     return gatherSystemTables;
00098   }

String org.objectweb.cjdbc.console.wizard.objects.Backend.getName  ) 
 

Returns the name value.

Returns:
Returns the name.

Definition at line 175 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.WizardTabs.exportDocumentToXml(), and org.objectweb.cjdbc.console.wizard.tab.BackendTab.itemStateChanged().

00176   {
00177     return name;
00178   }

String org.objectweb.cjdbc.console.wizard.objects.Backend.getUrl  ) 
 

Returns the url value.

Returns:
Returns the url.

Definition at line 195 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.WizardTabs.exportDocumentToXml(), and org.objectweb.cjdbc.console.wizard.tab.BackendTab.itemStateChanged().

00196   {
00197     return url;
00198   }

void org.objectweb.cjdbc.console.wizard.objects.Backend.setConnectionManagers Hashtable  connectionManagers  ) 
 

Sets the connectionManagers value.

Parameters:
connectionManagers The connectionManagers to set.

Definition at line 55 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.tab.BackendTab.actionPerformed(), and org.objectweb.cjdbc.console.wizard.WizardTabs.importDocumentFromXml().

00056   {
00057     this.connectionManagers = connectionManagers;
00058   }

void org.objectweb.cjdbc.console.wizard.objects.Backend.setConnectionTestStatement String  connectionTestStatement  ) 
 

Sets the connectionTestStatement value.

Parameters:
connectionTestStatement The connectionTestStatement to set.

Definition at line 125 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.tab.BackendTab.actionPerformed(), org.objectweb.cjdbc.console.wizard.tab.BackendTab.focusLost(), and org.objectweb.cjdbc.console.wizard.WizardTabs.importDocumentFromXml().

00126   {
00127     this.connectionTestStatement = connectionTestStatement;
00128   }

void org.objectweb.cjdbc.console.wizard.objects.Backend.setDriver String  driver  ) 
 

Sets the driver value.

Parameters:
driver The driver to set.

Definition at line 145 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.tab.BackendTab.actionPerformed(), org.objectweb.cjdbc.console.wizard.tab.BackendTab.focusLost(), and org.objectweb.cjdbc.console.wizard.WizardTabs.importDocumentFromXml().

00146   {
00147     this.driver = driver;
00148   }

void org.objectweb.cjdbc.console.wizard.objects.Backend.setDriverPath String  driverPath  ) 
 

Sets the driverPath value.

Parameters:
driverPath The driverPath to set.

Definition at line 165 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.tab.BackendTab.focusLost(), and org.objectweb.cjdbc.console.wizard.WizardTabs.importDocumentFromXml().

00166   {
00167     this.driverPath = driverPath;
00168   }

void org.objectweb.cjdbc.console.wizard.objects.Backend.setDynamicPrecision String  dynamicPrecision  ) 
 

Sets the dynamicPrecision value.

Parameters:
dynamicPrecision The dynamicPrecision to set.

Definition at line 85 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.tab.BackendTab.focusLost(), and org.objectweb.cjdbc.console.wizard.WizardTabs.importDocumentFromXml().

00086   {
00087     this.dynamicPrecision = dynamicPrecision;
00088   }

void org.objectweb.cjdbc.console.wizard.objects.Backend.setGatherSystemTables String  gatherSystemTables  ) 
 

Sets the gatherSystemTables value.

Parameters:
gatherSystemTables The gatherSystemTables to set.

Definition at line 105 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.tab.BackendTab.focusLost(), and org.objectweb.cjdbc.console.wizard.WizardTabs.importDocumentFromXml().

00106   {
00107     this.gatherSystemTables = gatherSystemTables;
00108   }

void org.objectweb.cjdbc.console.wizard.objects.Backend.setName String  name  ) 
 

Sets the name value.

Parameters:
name The name to set.

Definition at line 185 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.tab.BackendTab.actionPerformed(), org.objectweb.cjdbc.console.wizard.tab.BackendTab.focusLost(), and org.objectweb.cjdbc.console.wizard.WizardTabs.importDocumentFromXml().

00186   {
00187     this.name = name;
00188   }

void org.objectweb.cjdbc.console.wizard.objects.Backend.setUrl String  url  ) 
 

Sets the url value.

Parameters:
url The url to set.

Definition at line 205 of file Backend.java.

Referenced by org.objectweb.cjdbc.console.wizard.tab.BackendTab.actionPerformed(), org.objectweb.cjdbc.console.wizard.tab.BackendTab.focusLost(), and org.objectweb.cjdbc.console.wizard.WizardTabs.importDocumentFromXml().

00206   {
00207     this.url = url;
00208   }

String org.objectweb.cjdbc.console.wizard.objects.Backend.toString  ) 
 

See also:
java.lang.Object#toString()

Definition at line 213 of file Backend.java.

00214   {
00215     return name;
00216   }


The documentation for this class was generated from the following file:
Generated on Mon Apr 11 22:03:20 2005 for C-JDBC by  doxygen 1.3.9.1