Skip to main content
summaryrefslogtreecommitdiffstats
path: root/jpa
diff options
context:
space:
mode:
authorbvosburgh2008-08-20 19:17:49 +0000
committerbvosburgh2008-08-20 19:17:49 +0000
commit8b806783cdd9c081227619894a97bb22671cbd04 (patch)
tree169cc40911757bf12cd0cafed6a14e5c337178ed /jpa
parentd4403b7f9781fc286ae17e6b30a521dae4261682 (diff)
downloadwebtools.dali-8b806783cdd9c081227619894a97bb22671cbd04.tar.gz
webtools.dali-8b806783cdd9c081227619894a97bb22671cbd04.tar.xz
webtools.dali-8b806783cdd9c081227619894a97bb22671cbd04.zip
corrected comment
Diffstat (limited to 'jpa')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/JpaDataSource.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/JpaDataSource.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/JpaDataSource.java
index e02f4c0efc..8dbaa53cdd 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/JpaDataSource.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/JpaDataSource.java
@@ -33,41 +33,41 @@ public interface JpaDataSource extends JpaNode {
* The connection profile is looked up based on this setting.
*/
String getConnectionProfileName();
-
+
/**
* Set the data source's connection profile name.
* The connection profile is looked up based on this setting.
*/
void setConnectionProfileName(String connectionProfileName);
-
+
/**
* ID string used when connectionProfileName property is changed
* @see org.eclipse.jpt.utility.model.Model#addPropertyChangeListener(String, org.eclipse.jpt.utility.model.listener.PropertyChangeListener)
*/
public static final String CONNECTION_PROFILE_NAME_PROPERTY = "connectionProfileName"; //$NON-NLS-1$
-
+
/**
- * The data source's connection profile should never be null.
- * If we do not have a connection, return a "null" connection profile.
+ * If we do not have a connection, the data source's connection profile is
+ * null.
*/
ConnectionProfile getConnectionProfile();
-
+
/**
* ID string used when connectionProfile property is changed
* @see org.eclipse.jpt.utility.model.Model#addPropertyChangeListener(String, org.eclipse.jpt.utility.model.listener.PropertyChangeListener)
*/
public static final String CONNECTION_PROFILE_PROPERTY = "connectionProfile"; //$NON-NLS-1$
-
+
boolean connectionProfileIsActive();
-
+
Database getDatabase();
Iterator<String> catalogNames();
Catalog getCatalogNamed(String name);
-
+
Catalog getDefaultCatalog();
-
+
Iterator<String> schemaNames();
Schema getSchemaNamed(String name);

Back to the top