--- a/front_processing/extern/TUIO_JAVA/src/com/illposed/osc/OSCPacket.java Thu Mar 22 16:00:17 2012 +0100
+++ b/front_processing/extern/TUIO_JAVA/src/com/illposed/osc/OSCPacket.java Thu Mar 22 18:15:53 2012 +0100
@@ -1,4 +1,4 @@
-/**
+/**
* @author cramakrishnan
*
* Copyright (C) 2003, C. Ramakrishnan / Illposed Software
@@ -26,35 +26,35 @@
public abstract class OSCPacket {
- protected byte[] byteArray;
+ protected byte[] byteArray;
- public OSCPacket() {
- super();
- }
+ public OSCPacket() {
+ super();
+ }
- protected void computeByteArray() {
- OSCJavaToByteArrayConverter stream = new OSCJavaToByteArrayConverter();
- computeByteArray(stream);
- }
+ protected void computeByteArray() {
+ OSCJavaToByteArrayConverter stream = new OSCJavaToByteArrayConverter();
+ computeByteArray(stream);
+ }
- /**
- * @param stream OscPacketByteArrayConverter
- *
- * Subclasses should implement this method to product a byte array
- * formatted according to the OSC/SuperCollider specification.
- */
- protected abstract void computeByteArray(OSCJavaToByteArrayConverter stream);
+ /**
+ * @param stream OscPacketByteArrayConverter
+ *
+ * Subclasses should implement this method to product a byte array
+ * formatted according to the OSC/SuperCollider specification.
+ */
+ protected abstract void computeByteArray(OSCJavaToByteArrayConverter stream);
- /**
- * @return byte[]
- */
- public byte[] getByteArray() {
- computeByteArray();
- return byteArray;
- }
+ /**
+ * @return byte[]
+ */
+ public byte[] getByteArray() {
+ computeByteArray();
+ return byteArray;
+ }
- protected void init() {
-
- }
+ protected void init() {
+
+ }
}
\ No newline at end of file