view flys-client/src/main/java/de/intevation/flys/client/client/ui/FLYSView.java @ 2:bc5d4d2297b9

Introduced a service that retrieves the user who is currently logged in. This user is displayed in the menu bar. flys-client/trunk@1309 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 10 Feb 2011 08:57:34 +0000
parents 0e22a19852e7
children 89976499e013
line wrap: on
line source
package de.intevation.flys.client.client.ui;

import com.smartgwt.client.widgets.Canvas;
import com.smartgwt.client.widgets.Label;


/**
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class FLYSView extends Canvas {

    public FLYSView() {
        init();
    }


    protected void init() {
        setWidth("100%");
        setHeight("*");

        setBorder("1px solid #808080");
        setBackgroundColor("#C3D9FF");

        addChild(new Label("Hello Content!"));
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org