JWUPClient/src/de/mas/wupclient/Result.java
Maschell b818b0d1fe First commit. Only ls() is working so far
Started to port. Many functions are missing.
Some implementend are working, some are complety untested
2016-10-22 18:52:14 +02:00

42 lines
845 B
Java

package de.mas.wupclient;
public class Result {
private int resultValue;
private int int_value;
private byte[] data;
public Result(int result, byte[] data){
setData(data);
setResultValue(result);
}
public Result(int resultValue2, int int_value) {
setResultValue(resultValue2);
setInt_value(int_value);
}
public int getResultValue() {
return resultValue;
}
public void setResultValue(int resultValue) {
this.resultValue = resultValue;
}
public byte[] getData() {
return data;
}
public void setData(byte[] data) {
this.data = data;
}
public int getInt_value() {
return int_value;
}
public void setInt_value(int int_value) {
this.int_value = int_value;
}
}