1 22 23 package common.sd; 24 25 import java.io.Serializable ; 26 import common.SocketConnection; 27 28 29 34 public class SD_Log implements SocketData, Serializable { 35 private boolean start; 36 37 public SD_Log(boolean s) { 38 start = s; 39 } 40 41 public SD_Log() { 42 start = false; 43 } 44 45 public void performAction(SocketConnection sc) { 46 sc.chatLog(start); 47 } 48 } 49 50 | Popular Tags |