diff -r 2fa85847ccf7 -r 16fd25f3a75d javaquery/api/src/test/java/org/apidesign/bck2brwsr/htmlpage/PageController.java --- a/javaquery/api/src/test/java/org/apidesign/bck2brwsr/htmlpage/PageController.java Tue Mar 05 19:00:36 2013 +0100 +++ b/javaquery/api/src/test/java/org/apidesign/bck2brwsr/htmlpage/PageController.java Tue Mar 26 09:24:26 2013 +0100 @@ -50,7 +50,7 @@ if (PAGE != ref) { throw new IllegalStateException("Both references should be the same. " + ref + " != " + PAGE); } - ref.PG_TITLE.setText("You want this window to be named " + ref.PG_TEXT.getValue()); + ref.pg_title.setText("You want this window to be named " + ref.pg_text.getValue()); } @On(event = CLICK, id={ "pg.title", "pg.text" }) @@ -58,11 +58,11 @@ if (!id.equals("pg.title")) { throw new IllegalStateException(); } - PAGE.PG_TITLE.setText(id); + PAGE.pg_title.setText(id); } @On(event = CLICK, id={ "pg.canvas" }) static void clickCanvas(String id, double layerX) { - PAGE.PG_CANVAS.setWidth((int) layerX); + PAGE.pg_canvas.setWidth((int) layerX); } }