Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'hibernate/org.eclipse.emf.teneo.hibernate.examples/src/org/eclipse/emf/teneo/hibernate/examples/extlibrary/util/ExtlibraryResourceImpl.java')
-rwxr-xr-xhibernate/org.eclipse.emf.teneo.hibernate.examples/src/org/eclipse/emf/teneo/hibernate/examples/extlibrary/util/ExtlibraryResourceImpl.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/hibernate/org.eclipse.emf.teneo.hibernate.examples/src/org/eclipse/emf/teneo/hibernate/examples/extlibrary/util/ExtlibraryResourceImpl.java b/hibernate/org.eclipse.emf.teneo.hibernate.examples/src/org/eclipse/emf/teneo/hibernate/examples/extlibrary/util/ExtlibraryResourceImpl.java
new file mode 100755
index 000000000..19b43cb27
--- /dev/null
+++ b/hibernate/org.eclipse.emf.teneo.hibernate.examples/src/org/eclipse/emf/teneo/hibernate/examples/extlibrary/util/ExtlibraryResourceImpl.java
@@ -0,0 +1,32 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id: ExtlibraryResourceImpl.java,v 1.2 2010/03/02 06:08:35 mtaal Exp $
+ */
+package org.eclipse.emf.teneo.hibernate.examples.extlibrary.util;
+
+import org.eclipse.emf.common.util.URI;
+
+import org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl;
+
+/**
+ * <!-- begin-user-doc -->
+ * The <b>Resource </b> associated with the package.
+ * <!-- end-user-doc -->
+ * @see org.eclipse.emf.teneo.hibernate.examples.extlibrary.util.ExtlibraryResourceFactoryImpl
+ * @generated
+ */
+public class ExtlibraryResourceImpl extends XMLResourceImpl {
+ /**
+ * Creates an instance of the resource.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @param uri the URI of the new resource.
+ * @generated
+ */
+ public ExtlibraryResourceImpl(URI uri) {
+ super(uri);
+ }
+
+} //ExtlibraryResourceImpl

Back to the top