From kmorin@users.labs.libre-entreprise.org Thu Jul 30 16:59:37 2009 From: kmorin@users.labs.libre-entreprise.org To: jaxx-commits@list.nuiton.org Subject: [Buix-commits] r1542 - in trunk/guix-test-gwt/src/main/java/org/nuiton/guix: client demo Date: Thu, 30 Jul 2009 16:59:37 +0200 Message-ID: <20090730145937.9481916B17@nuiton.codelutin.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1677369009343736684==" --===============1677369009343736684== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Author: kmorin Date: 2009-07-30 16:59:37 +0200 (Thu, 30 Jul 2009) New Revision: 1542 Added: trunk/guix-test-gwt/src/main/java/org/nuiton/guix/client/Controller.java Modified: trunk/guix-test-gwt/src/main/java/org/nuiton/guix/demo/GuixDemo.guix Log: update the example files with the new feature Added: trunk/guix-test-gwt/src/main/java/org/nuiton/guix/client/Controller.ja= va =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/guix-test-gwt/src/main/java/org/nuiton/guix/client/Controller.java = (rev 0) +++ trunk/guix-test-gwt/src/main/java/org/nuiton/guix/client/Controller.java = 2009-07-30 14:59:37 UTC (rev 1542) @@ -0,0 +1,48 @@ +/** + * *##% guix-test-swing + * Copyright (C) 2009 CodeLutin + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * . ##%* + */ +package org.nuiton.guix.client; + +public class Controller { + + private java.lang.String text =3D "controller"; + private int num =3D 0; + + public Controller() { + System.out.println("Dude, it's bloody raining"); + } + + public void test() { + } + + public java.lang.String getText() { + return text; + } + + public void setText(java.lang.String text) { + this.text =3D text; + } + + public int getNum() { + return num; + } + + public void setNum(int num) { + this.num =3D num; + } +} Modified: trunk/guix-test-gwt/src/main/java/org/nuiton/guix/demo/GuixDemo.guix =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/guix-test-gwt/src/main/java/org/nuiton/guix/demo/GuixDemo.guix 2009= -07-30 14:59:12 UTC (rev 1541) +++ trunk/guix-test-gwt/src/main/java/org/nuiton/guix/demo/GuixDemo.guix 2009= -07-30 14:59:37 UTC (rev 1542) @@ -46,6 +46,9 @@ } =20 ]]> + + + @@ -59,6 +62,7 @@ =09 + @@ -67,7 +71,7 @@ - - + @@ -88,12 +92,17 @@ - + - =09 + + + + + -
--===============1677369009343736684==--