DataBlockpublic class DataBlock extends Object
Fields Summary |
---|
public int | p1 | public int | p2 | public int | p3 | public int | p4 |
Constructors Summary |
---|
public DataBlock(int p1, int p2, int p3, int p4) this.p1 = p1;
this.p2 = p2;
this.p3 = p3;
this.p4 = p4;
|
Methods Summary |
---|
public java.lang.String | toString() return "p1 = " + p1 + " \tp2 = " + p2 + " \tp3 = " + p3 + " \tp4 = " + p4;
|
|