comparison Paper/source/SendWidth.java @ 18:d3cd92ac4bd8

fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 26 Nov 2012 18:53:53 +0900
parents
children
comparison
equal deleted inserted replaced
17:fa9827772216 18:d3cd92ac4bd8
1 public class SendWidth extends CodeSegment {
2 Receiver width = ids.create(CommandType.PEEK);
3 @Override
4 public void run() {
5 int width = this.width.asInteger();
6 ods.put("parent", "widths", width);
7 System.out.println("send widths: " + width);
8 SendWidth cs = new SendWidth();
9 cs.width.setKey("local", "width", this.width.index);
10 }
11 }
12