Mercurial > hg > Members > tatsuki > Alice
comparison src/alice/datasegment/Command.java @ 217:b5c642ba998e working
change as** method and remove "local" key in TEST
author | sugi |
---|---|
date | Wed, 27 Mar 2013 20:02:38 +0900 |
parents | 7dddff9fa7f3 |
children | 38154e695025 |
comparison
equal
deleted
inserted
replaced
216:21bd8af1cf26 | 217:b5c642ba998e |
---|---|
59 csName = cs.toString(); | 59 csName = cs.toString(); |
60 } | 60 } |
61 return this.type + "\t" + key + "\t" + val + "\tindex=" + index + "\tcs=" + csName; | 61 return this.type + "\t" + key + "\t" + val + "\tindex=" + index + "\tcs=" + csName; |
62 } | 62 } |
63 | 63 |
64 public void setElement(CommandType cmdType, String key, Value val, Object obj){ | |
65 this.type = cmdType; | |
66 this.key = key; | |
67 this.val = val; | |
68 this.obj = obj; | |
69 this.reverseKey = "local"; | |
70 } | |
71 | |
72 } | 64 } |