comparison src/alice/datasegment/Command.java @ 40:20616fe4d28a

add log viewer
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Tue, 31 Jan 2012 15:19:35 +0900
parents 3155337e754e
children a85ff8dc16c1
comparison
equal deleted inserted replaced
39:3155337e754e 40:20616fe4d28a
32 public String getCommandString() { 32 public String getCommandString() {
33 String csName = "null"; 33 String csName = "null";
34 if (cs != null) { 34 if (cs != null) {
35 csName = cs.toString(); 35 csName = cs.toString();
36 } 36 }
37 return this.type + " \"" + key + "\" " + val + " index=" + index + " cs=" + csName; 37 return this.type + "\t" + key + "\t" + val + "\tindex=" + index + "\tcs=" + csName;
38 } 38 }
39 39
40 } 40 }