Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2012-10-22 17:13:44 +0000
committerBrian Vosburgh2012-12-07 16:53:04 +0000
commit863398e82b614ee8c71d331e793f98b12aeb38f8 (patch)
treed1a5be70b6b44b2f70c5cde4ecf986bab1c1cb1f /jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1
parent22b33f11caf65b626cdd65b440957c6623aa8b8d (diff)
downloadwebtools.dali-863398e82b614ee8c71d331e793f98b12aeb38f8.tar.gz
webtools.dali-863398e82b614ee8c71d331e793f98b12aeb38f8.tar.xz
webtools.dali-863398e82b614ee8c71d331e793f98b12aeb38f8.zip
change table generator "table" to "table name"
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/context/java/GenericJavaTableGenerator.java52
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/context/orm/GenericOrmTableGenerator.java54
2 files changed, 53 insertions, 53 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/context/java/GenericJavaTableGenerator.java b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/context/java/GenericJavaTableGenerator.java
index 1d52707460..2f0f965225 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/context/java/GenericJavaTableGenerator.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/context/java/GenericJavaTableGenerator.java
@@ -40,8 +40,8 @@ public class GenericJavaTableGenerator
extends AbstractJavaDbGenerator<TableGeneratorAnnotation>
implements JavaTableGenerator, UniqueConstraint.Owner
{
- protected String specifiedTable;
- protected String defaultTable;
+ protected String specifiedTableName;
+ protected String defaultTableName;
protected String specifiedSchema;
protected String defaultSchema;
@@ -65,7 +65,7 @@ public class GenericJavaTableGenerator
public GenericJavaTableGenerator(JavaGeneratorContainer parent, TableGeneratorAnnotation generatorAnnotation) {
super(parent, generatorAnnotation);
- this.specifiedTable = generatorAnnotation.getTable();
+ this.specifiedTableName = generatorAnnotation.getTable();
this.specifiedSchema = generatorAnnotation.getSchema();
this.specifiedCatalog = generatorAnnotation.getCatalog();
this.specifiedPkColumnName = generatorAnnotation.getPkColumnName();
@@ -80,7 +80,7 @@ public class GenericJavaTableGenerator
@Override
public void synchronizeWithResourceModel() {
super.synchronizeWithResourceModel();
- this.setSpecifiedTable_(this.generatorAnnotation.getTable());
+ this.setSpecifiedTableName_(this.generatorAnnotation.getTable());
this.setSpecifiedSchema_(this.generatorAnnotation.getSchema());
this.setSpecifiedCatalog_(this.generatorAnnotation.getCatalog());
this.setSpecifiedPkColumnName_(this.generatorAnnotation.getPkColumnName());
@@ -92,7 +92,7 @@ public class GenericJavaTableGenerator
@Override
public void update() {
super.update();
- this.setDefaultTable(this.buildDefaultTable());
+ this.setDefaultTableName(this.buildDefaultTableName());
this.setDefaultSchema(this.buildDefaultSchema());
this.setDefaultCatalog(this.buildDefaultCatalog());
this.setDefaultPkColumnName(this.buildDefaultPkColumnName());
@@ -110,44 +110,44 @@ public class GenericJavaTableGenerator
}
- // ********** table **********
+ // ********** table name **********
- public String getTable() {
- return (this.specifiedTable != null) ? this.specifiedTable : this.defaultTable;
+ public String getTableName() {
+ return (this.specifiedTableName != null) ? this.specifiedTableName : this.defaultTableName;
}
- public String getSpecifiedTable() {
- return this.specifiedTable;
+ public String getSpecifiedTableName() {
+ return this.specifiedTableName;
}
- public void setSpecifiedTable(String table) {
- this.generatorAnnotation.setTable(table);
- this.setSpecifiedTable_(table);
+ public void setSpecifiedTableName(String tableName) {
+ this.generatorAnnotation.setTable(tableName);
+ this.setSpecifiedTableName_(tableName);
}
- protected void setSpecifiedTable_(String table) {
- String old = this.specifiedTable;
- this.specifiedTable = table;
- this.firePropertyChanged(SPECIFIED_TABLE_PROPERTY, old, table);
+ protected void setSpecifiedTableName_(String tableName) {
+ String old = this.specifiedTableName;
+ this.specifiedTableName = tableName;
+ this.firePropertyChanged(SPECIFIED_TABLE_NAME_PROPERTY, old, tableName);
}
- public String getDefaultTable() {
- return this.defaultTable;
+ public String getDefaultTableName() {
+ return this.defaultTableName;
}
- protected void setDefaultTable(String table) {
- String old = this.defaultTable;
- this.defaultTable = table;
- this.firePropertyChanged(DEFAULT_TABLE_PROPERTY, old, table);
+ protected void setDefaultTableName(String tableName) {
+ String old = this.defaultTableName;
+ this.defaultTableName = tableName;
+ this.firePropertyChanged(DEFAULT_TABLE_NAME_PROPERTY, old, tableName);
}
- protected String buildDefaultTable() {
+ protected String buildDefaultTableName() {
return null; // TODO the default table is determined by the runtime provider...
}
public Table getDbTable() {
Schema dbSchema = this.getDbSchema();
- return (dbSchema == null) ? null : dbSchema.getTableForIdentifier(this.getTable());
+ return (dbSchema == null) ? null : dbSchema.getTableForIdentifier(this.getTableName());
}
@@ -565,7 +565,7 @@ public class GenericJavaTableGenerator
}
protected boolean isEquivalentTo(TableGenerator generator) {
- return ObjectTools.equals(this.specifiedTable, generator.getSpecifiedTable()) &&
+ return ObjectTools.equals(this.specifiedTableName, generator.getSpecifiedTableName()) &&
ObjectTools.equals(this.specifiedSchema, generator.getSpecifiedSchema()) &&
ObjectTools.equals(this.specifiedCatalog, generator.getSpecifiedCatalog()) &&
ObjectTools.equals(this.specifiedPkColumnName, generator.getSpecifiedPkColumnName()) &&
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/context/orm/GenericOrmTableGenerator.java b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/context/orm/GenericOrmTableGenerator.java
index 1da7aef29e..d2f0f3d16d 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/context/orm/GenericOrmTableGenerator.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa1/context/orm/GenericOrmTableGenerator.java
@@ -37,8 +37,8 @@ public class GenericOrmTableGenerator
extends AbstractOrmDbGenerator<XmlTableGenerator>
implements OrmTableGenerator, UniqueConstraint.Owner
{
- protected String specifiedTable;
- protected String defaultTable;
+ protected String specifiedTableName;
+ protected String defaultTableName;
protected String specifiedSchema;
protected String defaultSchema;
@@ -62,7 +62,7 @@ public class GenericOrmTableGenerator
public GenericOrmTableGenerator(JpaContextNode parent, XmlTableGenerator xmlTableGenerator) {
super(parent, xmlTableGenerator);
- this.specifiedTable = xmlTableGenerator.getTable();
+ this.specifiedTableName = xmlTableGenerator.getTable();
this.specifiedSchema = xmlTableGenerator.getSchema();
this.specifiedCatalog = xmlTableGenerator.getCatalog();
this.specifiedPkColumnName = xmlTableGenerator.getPkColumnName();
@@ -77,7 +77,7 @@ public class GenericOrmTableGenerator
@Override
public void synchronizeWithResourceModel() {
super.synchronizeWithResourceModel();
- this.setSpecifiedTable_(this.xmlGenerator.getTable());
+ this.setSpecifiedTableName_(this.xmlGenerator.getTable());
this.setSpecifiedSchema_(this.xmlGenerator.getSchema());
this.setSpecifiedCatalog_(this.xmlGenerator.getCatalog());
this.setSpecifiedPkColumnName_(this.xmlGenerator.getPkColumnName());
@@ -89,7 +89,7 @@ public class GenericOrmTableGenerator
@Override
public void update() {
super.update();
- this.setDefaultTable(this.buildDefaultTable());
+ this.setDefaultTableName(this.buildDefaultTableName());
this.setDefaultSchema(this.buildDefaultSchema());
this.setDefaultCatalog(this.buildDefaultCatalog());
this.setDefaultPkColumnName(this.buildDefaultPkColumnName());
@@ -107,44 +107,44 @@ public class GenericOrmTableGenerator
}
- // ********** table **********
+ // ********** table name **********
- public String getTable() {
- return (this.specifiedTable != null) ? this.specifiedTable : this.defaultTable;
+ public String getTableName() {
+ return (this.specifiedTableName != null) ? this.specifiedTableName : this.defaultTableName;
}
- public String getSpecifiedTable() {
- return this.specifiedTable;
+ public String getSpecifiedTableName() {
+ return this.specifiedTableName;
}
- public void setSpecifiedTable(String table) {
- this.setSpecifiedTable_(table);
- this.xmlGenerator.setTable(table);
+ public void setSpecifiedTableName(String tableName) {
+ this.setSpecifiedTableName_(tableName);
+ this.xmlGenerator.setTable(tableName);
}
- protected void setSpecifiedTable_(String table) {
- String old = this.specifiedTable;
- this.specifiedTable = table;
- this.firePropertyChanged(SPECIFIED_TABLE_PROPERTY, old, table);
+ protected void setSpecifiedTableName_(String tableName) {
+ String old = this.specifiedTableName;
+ this.specifiedTableName = tableName;
+ this.firePropertyChanged(SPECIFIED_TABLE_NAME_PROPERTY, old, tableName);
}
- public String getDefaultTable() {
- return this.defaultTable;
+ public String getDefaultTableName() {
+ return this.defaultTableName;
}
- protected void setDefaultTable(String table) {
- String old = this.defaultTable;
- this.defaultTable = table;
- this.firePropertyChanged(DEFAULT_TABLE_PROPERTY, old, table);
+ protected void setDefaultTableName(String tableName) {
+ String old = this.defaultTableName;
+ this.defaultTableName = tableName;
+ this.firePropertyChanged(DEFAULT_TABLE_NAME_PROPERTY, old, tableName);
}
- protected String buildDefaultTable() {
+ protected String buildDefaultTableName() {
return null; // TODO the default table is determined by the runtime provider...
}
public Table getDbTable() {
Schema dbSchema = this.getDbSchema();
- return (dbSchema == null) ? null : dbSchema.getTableForIdentifier(this.getTable());
+ return (dbSchema == null) ? null : dbSchema.getTableForIdentifier(this.getTableName());
}
@@ -439,7 +439,7 @@ public class GenericOrmTableGenerator
}
protected boolean isEquivalentTo(TableGenerator generator) {
- return ObjectTools.equals(this.specifiedTable, generator.getSpecifiedTable()) &&
+ return ObjectTools.equals(this.specifiedTableName, generator.getSpecifiedTableName()) &&
ObjectTools.equals(this.specifiedSchema, generator.getSpecifiedSchema()) &&
ObjectTools.equals(this.specifiedCatalog, generator.getSpecifiedCatalog()) &&
ObjectTools.equals(this.specifiedPkColumnName, generator.getSpecifiedPkColumnName()) &&
@@ -468,7 +468,7 @@ public class GenericOrmTableGenerator
public void convertFrom(JavaTableGenerator javaTableGenerator) {
super.convertFrom(javaTableGenerator);
- this.setSpecifiedTable(javaTableGenerator.getSpecifiedTable());
+ this.setSpecifiedTableName(javaTableGenerator.getSpecifiedTableName());
this.setSpecifiedSchema(javaTableGenerator.getSpecifiedSchema());
this.setSpecifiedCatalog(javaTableGenerator.getSpecifiedCatalog());
this.setSpecifiedPkColumnName(javaTableGenerator.getSpecifiedPkColumnName());

Back to the top