Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.emf.teneo.samples/src/com/example/car/util/CarResourceFactoryImpl.java')
-rwxr-xr-xtests/org.eclipse.emf.teneo.samples/src/com/example/car/util/CarResourceFactoryImpl.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/org.eclipse.emf.teneo.samples/src/com/example/car/util/CarResourceFactoryImpl.java b/tests/org.eclipse.emf.teneo.samples/src/com/example/car/util/CarResourceFactoryImpl.java
index b7f5b0b69..914aa561f 100755
--- a/tests/org.eclipse.emf.teneo.samples/src/com/example/car/util/CarResourceFactoryImpl.java
+++ b/tests/org.eclipse.emf.teneo.samples/src/com/example/car/util/CarResourceFactoryImpl.java
@@ -15,17 +15,16 @@ import org.eclipse.emf.ecore.resource.impl.ResourceFactoryImpl;
import org.eclipse.emf.ecore.xmi.XMLResource;
/**
- * <!-- begin-user-doc -->
- * The <b>Resource Factory</b> associated with the package.
- * <!-- end-user-doc -->
+ * <!-- begin-user-doc --> The <b>Resource Factory</b> associated with the package. <!--
+ * end-user-doc -->
+ *
* @see com.example.car.util.CarResourceImpl
* @generated
*/
public class CarResourceFactoryImpl extends ResourceFactoryImpl {
/**
- * Creates an instance of the resource factory.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * Creates an instance of the resource factory. <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
public CarResourceFactoryImpl() {
@@ -33,9 +32,8 @@ public class CarResourceFactoryImpl extends ResourceFactoryImpl {
}
/**
- * Creates an instance of the resource.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
+ * Creates an instance of the resource. <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
@Override
@@ -46,11 +44,13 @@ public class CarResourceFactoryImpl extends ResourceFactoryImpl {
result.getDefaultSaveOptions().put(XMLResource.OPTION_SCHEMA_LOCATION, Boolean.TRUE);
- result.getDefaultLoadOptions().put(XMLResource.OPTION_USE_ENCODED_ATTRIBUTE_STYLE, Boolean.TRUE);
- result.getDefaultSaveOptions().put(XMLResource.OPTION_USE_ENCODED_ATTRIBUTE_STYLE, Boolean.TRUE);
+ result.getDefaultLoadOptions()
+ .put(XMLResource.OPTION_USE_ENCODED_ATTRIBUTE_STYLE, Boolean.TRUE);
+ result.getDefaultSaveOptions()
+ .put(XMLResource.OPTION_USE_ENCODED_ATTRIBUTE_STYLE, Boolean.TRUE);
result.getDefaultLoadOptions().put(XMLResource.OPTION_USE_LEXICAL_HANDLER, Boolean.TRUE);
return result;
}
-} //CarResourceFactoryImpl
+} // CarResourceFactoryImpl

Back to the top