17 package vrml.external.FreeWRLEAI;
23 private boolean value;
30 public VSFBool(DataInputStream in)
throws IOException
32 value = in.readByte() != 0;
35 public void write(DataOutputStream out)
throws IOException
37 out.writeByte(value ? 1 : 0);
40 public boolean getValue() {
return value; }
42 public byte getType() {
return SFBOOL; }