]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.message.ui/src/org/simantics/message/ui/scheme/URLReferenceSerializer.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.message.ui / src / org / simantics / message / ui / scheme / URLReferenceSerializer.java
index 4e1aac551b6c27d48df3721c40af4fd9311bdb5f..718e518f0cb46afade8d2e94b9c482324ecd9af6 100644 (file)
@@ -1,51 +1,51 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.message.ui.scheme;\r
-\r
-import java.net.MalformedURLException;\r
-import java.net.URI;\r
-import java.net.URISyntaxException;\r
-import java.net.URL;\r
-\r
-import org.simantics.message.IReferenceSerializer;\r
-import org.simantics.message.ReferenceSerializationException;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class URLReferenceSerializer implements IReferenceSerializer {\r
-\r
-    @Override\r
-    public boolean handles(Object o) {\r
-        return o instanceof URL;\r
-    }\r
-\r
-    @Override\r
-    public Object deserialize(URI data) throws ReferenceSerializationException {\r
-        try {\r
-            return data.toURL();\r
-        } catch (MalformedURLException e) {\r
-            throw new ReferenceSerializationException(e);\r
-        }\r
-    }\r
-\r
-    @Override\r
-    public URI serialize(Object o) throws ReferenceSerializationException {\r
-        assert handles(o);\r
-        try {\r
-            return ((URL) o).toURI();\r
-        } catch (URISyntaxException e) {\r
-            throw new ReferenceSerializationException(e);\r
-        }\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * 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:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.message.ui.scheme;
+
+import java.net.MalformedURLException;
+import java.net.URI;
+import java.net.URISyntaxException;
+import java.net.URL;
+
+import org.simantics.message.IReferenceSerializer;
+import org.simantics.message.ReferenceSerializationException;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class URLReferenceSerializer implements IReferenceSerializer {
+
+    @Override
+    public boolean handles(Object o) {
+        return o instanceof URL;
+    }
+
+    @Override
+    public Object deserialize(URI data) throws ReferenceSerializationException {
+        try {
+            return data.toURL();
+        } catch (MalformedURLException e) {
+            throw new ReferenceSerializationException(e);
+        }
+    }
+
+    @Override
+    public URI serialize(Object o) throws ReferenceSerializationException {
+        assert handles(o);
+        try {
+            return ((URL) o).toURI();
+        } catch (URISyntaxException e) {
+            throw new ReferenceSerializationException(e);
+        }
+    }
+
+}