Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaren Butzke2012-08-20 20:42:23 +0000
committerKaren Butzke2012-08-20 21:11:37 +0000
commit8386b88866c694a15ea0d0db7c61b33e36753044 (patch)
tree5a9aef15ca51d82f5e69388c7d272841f163d3f1 /jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/resource/orm
parent285778800a2ff1cbc0f1cf3e998a522bab622db2 (diff)
downloadwebtools.dali-8386b88866c694a15ea0d0db7c61b33e36753044.tar.gz
webtools.dali-8386b88866c694a15ea0d0db7c61b33e36753044.tar.xz
webtools.dali-8386b88866c694a15ea0d0db7c61b33e36753044.zip
380150 - Need tolerance for EclipseLink NoSQL support - refactoring
the Generator hierarchy
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/resource/orm')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/resource/orm/XmlUuidGenerator.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/resource/orm/XmlUuidGenerator.java b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/resource/orm/XmlUuidGenerator.java
index e42a40df86..1431f66f79 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/resource/orm/XmlUuidGenerator.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/resource/orm/XmlUuidGenerator.java
@@ -423,7 +423,8 @@ public class XmlUuidGenerator extends EBaseObjectImpl implements XmlUuidGenerato
public static Translator buildTranslator(String elementName, EStructuralFeature structuralFeature) {
return new SimpleTranslator(
elementName,
- structuralFeature,
+ structuralFeature,
+ Translator.END_TAG_NO_INDENT,
EclipseLinkOrmPackage.eINSTANCE.getXmlUuidGenerator(),
buildTranslatorChildren());
}

Back to the top