]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.editors.win32/src/org/simantics/editors/win32/ole/WMP_Definition.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.editors.win32 / src / org / simantics / editors / win32 / ole / WMP_Definition.java
index ebf28ef04c4543ca0fb783a79dc1fe807d8fd023..e079f601b767422690fccde313dfd529931af52b 100644 (file)
@@ -1,59 +1,59 @@
-/*******************************************************************************\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.editors.win32.ole;\r
-\r
-import org.eclipse.swt.ole.win32.OleAutomation;\r
-import org.eclipse.swt.ole.win32.OleClientSite;\r
-import org.eclipse.swt.ole.win32.OleFrame;\r
-\r
-/**\r
- * Windows Media Player\r
- * \r
- * @author Marko Luukkainen <marko.luukkainen@vtt.fi>\r
- *\r
- */\r
-public class WMP_Definition implements EditorDefinition{\r
-       \r
-       static String[] suffix = new String[]{"wav","wma","wmv","asf","mp3","mpg","avi"};\r
-       \r
-       @Override\r
-       public OleController createController(OleFrame frame, OleClientSite site,\r
-                       OleAutomation auto) {\r
-               return new WMPController(frame,site,auto);\r
-       }\r
-       \r
-       @Override\r
-       public String getProgID() {\r
-               return "WMPlayer.OCX";\r
-       }\r
-       \r
-       @Override\r
-       public boolean supportSuffix(String suffix) {\r
-               for (String s: WMP_Definition.suffix) {\r
-                       if (suffix.equals(s))\r
-                               return true;\r
-               }\r
-               return false;\r
-       }\r
-       \r
-       @Override\r
-       public boolean useBrowser() {\r
-               return false;\r
-       }\r
-       \r
-       @Override\r
-       public boolean useFileInput() {\r
-               return false;\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.editors.win32.ole;
+
+import org.eclipse.swt.ole.win32.OleAutomation;
+import org.eclipse.swt.ole.win32.OleClientSite;
+import org.eclipse.swt.ole.win32.OleFrame;
+
+/**
+ * Windows Media Player
+ * 
+ * @author Marko Luukkainen <marko.luukkainen@vtt.fi>
+ *
+ */
+public class WMP_Definition implements EditorDefinition{
+       
+       static String[] suffix = new String[]{"wav","wma","wmv","asf","mp3","mpg","avi"};
+       
+       @Override
+       public OleController createController(OleFrame frame, OleClientSite site,
+                       OleAutomation auto) {
+               return new WMPController(frame,site,auto);
+       }
+       
+       @Override
+       public String getProgID() {
+               return "WMPlayer.OCX";
+       }
+       
+       @Override
+       public boolean supportSuffix(String suffix) {
+               for (String s: WMP_Definition.suffix) {
+                       if (suffix.equals(s))
+                               return true;
+               }
+               return false;
+       }
+       
+       @Override
+       public boolean useBrowser() {
+               return false;
+       }
+       
+       @Override
+       public boolean useFileInput() {
+               return false;
+       }
+       
+
+}