Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.core/src/org/eclipse/papyrus/emf/facet/util/emf/core/internal/serialization/serializers/EMFURISerializer.java')
-rw-r--r--plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.core/src/org/eclipse/papyrus/emf/facet/util/emf/core/internal/serialization/serializers/EMFURISerializer.java66
1 files changed, 33 insertions, 33 deletions
diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.core/src/org/eclipse/papyrus/emf/facet/util/emf/core/internal/serialization/serializers/EMFURISerializer.java b/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.core/src/org/eclipse/papyrus/emf/facet/util/emf/core/internal/serialization/serializers/EMFURISerializer.java
index 008fe7f745a..bd72491e649 100644
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.core/src/org/eclipse/papyrus/emf/facet/util/emf/core/internal/serialization/serializers/EMFURISerializer.java
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.core/src/org/eclipse/papyrus/emf/facet/util/emf/core/internal/serialization/serializers/EMFURISerializer.java
@@ -1,33 +1,33 @@
-/*******************************************************************************
- * Copyright (c) 2011 Mia-Software.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Nicolas Bros (Mia-Software) - initial API and implementation
- *******************************************************************************/
-package org.eclipse.papyrus.emf.facet.util.emf.core.internal.serialization.serializers;
-
-import org.eclipse.emf.common.util.URI;
-import org.eclipse.papyrus.emf.facet.util.emf.core.serialization.ISerializer;
-
-public class EMFURISerializer implements ISerializer<URI> {
-
- public EMFURISerializer() {
- //
- }
-
- public Class<URI> getType() {
- return URI.class;
- }
-
- public String serialize(final URI value) {
- return value.toString();
- }
-
- public URI deserialize(final String serializedValue) {
- return URI.createURI(serializedValue);
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2011 Mia-Software.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Nicolas Bros (Mia-Software) - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.papyrus.emf.facet.util.emf.core.internal.serialization.serializers;
+
+import org.eclipse.emf.common.util.URI;
+import org.eclipse.papyrus.emf.facet.util.emf.core.serialization.ISerializer;
+
+public class EMFURISerializer implements ISerializer<URI> {
+
+ public EMFURISerializer() {
+ //
+ }
+
+ public Class<URI> getType() {
+ return URI.class;
+ }
+
+ public String serialize(final URI value) {
+ return value.toString();
+ }
+
+ public URI deserialize(final String serializedValue) {
+ return URI.createURI(serializedValue);
+ }
+}

Back to the top