Ejemplo n.º 1
0
 @Override
 public void readData(DataInputStream input) throws IOException {
   super.readData(input);
   this.setText(PacketUtil.readString(input));
   this.setCentered(input.readBoolean());
   this.setHexColor(input.readInt());
 }
Ejemplo n.º 2
0
 @Override
 public void readData(SpoutInputStream input) throws IOException {
   super.readData(input);
   this.setUrl(input.readString());
   this.setDrawAlphaChannel(input.readBoolean());
   setTop(input.readShort());
   setLeft(input.readShort());
 }
Ejemplo n.º 3
0
 @Override
 public void readData(SpoutInputStream input) throws IOException {
   super.readData(input);
   setEnabled(input.readBoolean());
   setColor(input.readColor());
   setDisabledColor(input.readColor());
   setFocus(input.readBoolean());
 }
Ejemplo n.º 4
0
 @Override
 public void readData(DataInputStream input) throws IOException {
   super.readData(input);
   setBgVisible(input.readBoolean());
 }
Ejemplo n.º 5
0
 @Override
 public void readData(DataInputStream input) throws IOException {
   super.readData(input);
   visibleLines = input.readInt();
   visibleChatLines = input.readInt();
 }
Ejemplo n.º 6
0
 @Override
 public void readData(DataInputStream input) throws IOException {
   super.readData(input);
   this.setUrl(PacketUtil.readString(input));
   this.setDrawAlphaChannel(input.readBoolean());
 }