blob: efa940cce65dd26e6939a58813c49f5f6c1f3e5c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Rushan R. Gilmullin and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Rushan R. Gilmullin - initial API and implementation
*******************************************************************************/
package org.eclipse.osbp.vaaclipse.publicapi.model;
/**
* @author rushan
*
*/
public class Tags {
/**
* Vaadin specific tag to inhibit resizing of sashes if needed
*/
public static final String NO_RESIZE = "NoResize";
public static final String MAIN_WINDOW = "mainWindow";
/**
* Perspective's tag to show perspective switch button in perspective switch
* panel
*/
public static final String HAS_SWITCH_BUTTON = "HasSwitchButton";
/**
* Tag to show text of perspective switch buttons in perspective switcher
* panel
*/
public static final String ICONS_ONLY = "IconsOnly";
}