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/StringSerializer.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/StringSerializer.java64
1 files changed, 32 insertions, 32 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/StringSerializer.java b/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.core/src/org/eclipse/papyrus/emf/facet/util/emf/core/internal/serialization/serializers/StringSerializer.java
index fc98b7bd6b1..a9e3dbde4cb 100644
--- a/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.core/src/org/eclipse/papyrus/emf/facet/util/emf/core/internal/serialization/serializers/StringSerializer.java
+++ b/plugins/facet/org.eclipse.papyrus.emf.facet.util.emf.core/src/org/eclipse/papyrus/emf/facet/util/emf/core/internal/serialization/serializers/StringSerializer.java
@@ -1,32 +1,32 @@
-/*******************************************************************************
- * 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.papyrus.emf.facet.util.emf.core.serialization.ISerializer;
-
-public class StringSerializer implements ISerializer<String> {
-
- public StringSerializer() {
- //
- }
-
- public Class<String> getType() {
- return String.class;
- }
-
- public String serialize(final String value) {
- return value;
- }
-
- public String deserialize(final String serializedValue) {
- return 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.papyrus.emf.facet.util.emf.core.serialization.ISerializer;
+
+public class StringSerializer implements ISerializer<String> {
+
+ public StringSerializer() {
+ //
+ }
+
+ public Class<String> getType() {
+ return String.class;
+ }
+
+ public String serialize(final String value) {
+ return value;
+ }
+
+ public String deserialize(final String serializedValue) {
+ return serializedValue;
+ }
+}

Back to the top