comparison flys-client/src/main/java/de/intevation/flys/client/client/ui/FLYSView.java @ 1:0e22a19852e7

Removed useless auto generated classes and added first ui elements with i18n support. flys-client/trunk@1306 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 09 Feb 2011 09:59:27 +0000
parents
children 89976499e013
comparison
equal deleted inserted replaced
0:4e8be5e7855f 1:0e22a19852e7
1 package de.intevation.flys.client.client.ui;
2
3 import com.smartgwt.client.widgets.Canvas;
4 import com.smartgwt.client.widgets.Label;
5
6
7 /**
8 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
9 */
10 public class FLYSView extends Canvas {
11
12 public FLYSView() {
13 init();
14 }
15
16
17 protected void init() {
18 setWidth("100%");
19 setHeight("*");
20
21 setBorder("1px solid #808080");
22 setBackgroundColor("#C3D9FF");
23
24 addChild(new Label("Hello Content!"));
25 }
26 }
27 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org