Mercurial > hg > FederatedLinda
comparison src/fdl/Tuple.java @ 22:56e015e8f5dc
Testing TestLindaServer
author | kono |
---|---|
date | Tue, 19 Aug 2008 16:02:48 +0900 |
parents | 609b288f47f9 |
children | b4fd7fb9135a |
comparison
equal
deleted
inserted
replaced
21:fac6e0073b1a | 22:56e015e8f5dc |
---|---|
23 | 23 |
24 public Tuple() { | 24 public Tuple() { |
25 } | 25 } |
26 | 26 |
27 public void setCommand(int _mode, int _seq) { | 27 public void setCommand(int _mode, int _seq) { |
28 PSX.setCommand(command, _mode, id, _seq,datalen); | 28 setCommand( _mode, id, _seq,datalen); |
29 } | 29 } |
30 | 30 |
31 public void setCommand(int _mode, int _id, int _seq, int _datalen) { | 31 public void setCommand(int _mode, int _id, int _seq, int _datalen) { |
32 PSX.setCommand(command, _mode, _id, _seq, _datalen); | 32 command = PSX.setCommand(_mode, _id, _seq, _datalen); |
33 } | 33 } |
34 | 34 |
35 public void setTuple(int _mode,int _id, int _seq, int _datalen, ByteBuffer _data) { | 35 public void setTuple(int _mode,int _id, int _seq, int _datalen, ByteBuffer _data) { |
36 mode = _mode; | 36 mode = _mode; |
37 id = _id; | 37 id = _id; |