tony 2003/10/14 13:17:11
Modified: src/blocks/midi/java/org/apache/cocoon/components/midi/xmidi
ByteLen.java
Log:
minor javadoc patches
Revision Changes Path
1.2 +13 -13
cocoon-2.1/src/blocks/midi/java/org/apache/cocoon/components/midi/xmidi/ByteLen.java
Index: ByteLen.java
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/blocks/midi/java/org/apache/cocoon/components/midi/xmidi/ByteLen.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ByteLen.java 11 Aug 2003 21:54:09 -0000 1.1
+++ ByteLen.java 14 Oct 2003 20:17:11 -0000 1.2
@@ -65,34 +65,34 @@
/**
* Default constructor.
* As of Jan 8, 2001, this is not used.
-*/
- public ByteLen() {}
+ */
+ public ByteLen() {}
/**
* Constructor used in the
- * [EMAIL PROTECTED] com.palserv.XMidi.MX#deltaToInt(byte[],int)
MX.deltaToInt}
+ * [EMAIL PROTECTED]
org.apache.cocoon.components.midi.xmidi.Utils#deltaToInt(byte[],int)
MX.deltaToInt}
* method to create this class, which it then returns.
* @param byte[] b - a byte array; used to set ba
* @param int l - a length; used to set len
-*/
- public ByteLen(byte[] b, int l) {
- ba = b;
- len = l;
- }
+ */
+ public ByteLen(byte[] b, int l) {
+ ba = b;
+ len = l;
+ }
/**
* A byte array.
-*/
- public byte[] ba;
+ */
+ public byte[] ba;
/**
* As used in the
- * [EMAIL PROTECTED] com.palserv.XMidi.MX#deltaToInt(byte[],int)
MX.deltaToInt}
+ * [EMAIL PROTECTED]
org.apache.cocoon.components.midi.xmidi.Utils#deltaToInt(byte[],int)
MX.deltaToInt}
* method, it is the length of the delta field being converted,
* not the length of the array.
* <p>
* There is nothing about this class that requires that this variable
* be used in this way. It could be any int.
-*/
- public int len;
+ */
+ public int len;
}