ChangeStatusTextPacket.java :  » Client » xfdroid » lowijs » XfireClient » packet » Android Open Source

Android Open Source » Client » xfdroid 
xfdroid » lowijs » XfireClient » packet » ChangeStatusTextPacket.java
package lowijs.XfireClient.packet;

public class ChangeStatusTextPacket extends Packet {
  private final byte[] p_statustext_1 = new byte[] {
      0x20, 0, 0x01, 0x2e, 0x01
  };
  
  public ChangeStatusTextPacket(String statustext) {
    putBytes(p_statustext_1);
    putShortString(statustext);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.