Package org.geomajas.puregwt.client.general

Source Code of org.geomajas.puregwt.client.general.IntroductionContentPanel

/*
* This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
*
* Copyright 2008-2011 Geosparc nv, http://www.geosparc.com/, Belgium.
*
* The program is available in open source according to the GNU Affero
* General Public License. All contributions in this program are covered
* by the Geomajas Contributors License Agreement. For full licensing
* details, see LICENSE.txt in the project root.
*/

package org.geomajas.puregwt.client.general;

import org.geomajas.puregwt.client.ContentPanel;

import com.google.gwt.user.client.ui.HTML;
import com.google.gwt.user.client.ui.Widget;

/**
* Introduction page.
*
* @author Pieter De Graef
*/
public class IntroductionContentPanel extends ContentPanel {

  public String getTitle() {
    return "Geomajas Pure GWT face";
  }

  public String getDescription() {
    return "This is the introduction page for the Geomajas Pure GWT face. Feel free to explore all" +
        " functionalities this demo application provides.";
  }

  public Widget getContentWidget() {
    HTML content = new HTML("Please give Geomajas a try and let the world know how wonderful it is.");
    return content;
  }
}
TOP

Related Classes of org.geomajas.puregwt.client.general.IntroductionContentPanel

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.