package P9P.msg;
import P9P.type.*;
import java.io.*;
public class Rstat9P extends rmsg9P {
public short9P size = new short9P();
public stat9P stat = new stat9P();
public void write(ByteArrayOutputStream buf) {
type.write(buf);
tag.write(buf);
size=new short9P(stat.len());
size.write(buf);
stat.write(buf);
}
public void read (byte[] msg, int i) {
type.read(msg,i);
tag.read(msg,i+=1);
size.read(msg,i+=2);
stat.read(msg,i+2);
}
public String toString() {
return tagDb()+"Rstat "+stat.toString();
}
}