front_processing/extern/TUIO_JAVA/src/com/illposed/osc/OSCPort.java
changeset 28 9ccef81f02ab
parent 10 925b7ee746e3
--- a/front_processing/extern/TUIO_JAVA/src/com/illposed/osc/OSCPort.java	Thu Apr 12 13:09:46 2012 +0200
+++ b/front_processing/extern/TUIO_JAVA/src/com/illposed/osc/OSCPort.java	Thu Apr 12 15:33:25 2012 +0200
@@ -1,51 +1,51 @@
-/**
- * @author cramakrishnan
- *
- * Copyright (C) 2004, C. Ramakrishnan / Illposed Software
- * All rights reserved.
- * 
- * See license.txt (or license.rtf) for license information.
- * 
- * 
- * OSCPort is an abstract superclass. To send OSC messages, use OSCPortOut. 
- * To listen for OSC messages, use OSCPortIn.
- *
- */
-
-package com.illposed.osc;
-
-import java.net.*;
-import java.io.IOException;
-
-public abstract class OSCPort {
-
-    protected DatagramSocket socket;
-    protected int port;
-    
-    /**
-     * The port that the SuperCollider synth engine ususally listens too
-     */
-    public static final int defaultSCOSCPort = 57110;
-    
-    /**
-     * The port that the SuperCollider language engine ususally listens too
-     */
-    public static final int defaultSCLangOSCPort = 57120;
-    
-    /**
-     * @see java.lang.Object#finalize()
-     */
-    protected void finalize() throws Throwable {
-        super.finalize();
-        socket.close();
-    }
-    
-    /**
-     * Close the socket and free-up resources. It's recommended that clients call
-     * this when they are done with the port.
-     */
-    public void close() {
-        socket.close();
-    }
-
-}
+/**
+ * @author cramakrishnan
+ *
+ * Copyright (C) 2004, C. Ramakrishnan / Illposed Software
+ * All rights reserved.
+ * 
+ * See license.txt (or license.rtf) for license information.
+ * 
+ * 
+ * OSCPort is an abstract superclass. To send OSC messages, use OSCPortOut. 
+ * To listen for OSC messages, use OSCPortIn.
+ *
+ */
+
+package com.illposed.osc;
+
+import java.net.*;
+import java.io.IOException;
+
+public abstract class OSCPort {
+
+    protected DatagramSocket socket;
+    protected int port;
+    
+    /**
+     * The port that the SuperCollider synth engine ususally listens too
+     */
+    public static final int defaultSCOSCPort = 57110;
+    
+    /**
+     * The port that the SuperCollider language engine ususally listens too
+     */
+    public static final int defaultSCLangOSCPort = 57120;
+    
+    /**
+     * @see java.lang.Object#finalize()
+     */
+    protected void finalize() throws Throwable {
+        super.finalize();
+        socket.close();
+    }
+    
+    /**
+     * Close the socket and free-up resources. It's recommended that clients call
+     * this when they are done with the port.
+     */
+    public void close() {
+        socket.close();
+    }
+
+}