/* * This is part of Geomajas, a GIS framework, http://www.geomajas.org/. * * Copyright 2008-2015 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.widget.utility.gwt.example.client.i18n; import com.google.gwt.i18n.client.Messages; /** * Message for the utlity widget example. * * @author Joachim Van der Auwera */ public interface WidgetUtilityMessages extends Messages { /** @return title for the utility widgets tree node. */ String treeGroupUtilityWidgets(); /** @return title for the default ribbon panel. */ String defaultRibbonTitle(); /** @return description for the default ribbon panel. */ String defaultRibbonDescription(); /** @return title for the default ribbon panel. */ String tabbedRibbonTitle(); /** @return description for the default ribbon panel. */ String tabbedRibbonDescription(); /** @return title for the default ribbon panel. */ String customWidgetsRibbonTitle(); /** @return description for the default ribbon panel. */ String customWidgetsRibbonDescription(); /** @return title for the default ribbon panel. */ String customStyleRibbonTitle(); /** @return description for the default ribbon panel. */ String customStyleRibbonDescription(); /** @return title for the default ribbon panel. */ String msStyleRibbonTitle(); /** @return description for the default ribbon panel. */ String msStyleRibbonDescription(); }