36 lines
791 B
Java
36 lines
791 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.tridium.fox.message;
|
|
|
|
import com.tridium.fox.message.FoxTuple;
|
|
import com.tridium.fox.message.MessageReader;
|
|
import com.tridium.fox.message.MessageWriter;
|
|
import java.io.IOException;
|
|
|
|
public final class FoxString
|
|
extends FoxTuple {
|
|
public String value;
|
|
|
|
public FoxString(String string, String string2) {
|
|
this.name = string;
|
|
this.value = string2;
|
|
}
|
|
|
|
public FoxString() {
|
|
}
|
|
|
|
public final int getType() {
|
|
return 115;
|
|
}
|
|
|
|
protected final void writeValue(MessageWriter messageWriter) throws IOException {
|
|
messageWriter.writeSafe(this.value);
|
|
}
|
|
|
|
protected void readValue(MessageReader messageReader) throws IOException {
|
|
this.value = messageReader.readSafe();
|
|
}
|
|
}
|
|
|