~ubuntu-branches/ubuntu/karmic/pilot-link/karmic

« back to all changes in this revision

Viewing changes to bindings/Java/org/gnu/pilotlink/RawRecord.java

  • Committer: Bazaar Package Importer
  • Author(s): Ludovic Rousseau
  • Date: 2006-09-22 11:51:36 UTC
  • mfrom: (3.1.8 edgy)
  • Revision ID: james.westby@ubuntu.com-20060922115136-qqmy17bx8j5x0y72
Tags: 0.12.1-5
* urgency medium since libpisock-dev was not usable to build any package
* libpisock-dev now depends on libusb-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package org.gnu.pilotlink;
2
 
import java.util.*;
3
2
 
4
3
public class RawRecord extends Record {
5
4
        private byte[] buffer;
9
8
                setCategory(cat);
10
9
                setAttribs(attr);
11
10
                setSize(sz);
12
 
                setId(i);               
 
11
                setId(i);       
 
12
                //System.out.println("Attribs: "+attr);
13
13
        }
14
14
        public RawRecord(byte[] b, int sz, int attr, int cat) {
15
15
                this(b,0,sz,attr,cat);