blob: 0d7520cf3dac20bec9e2ff2ab2f502b00ce49779 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2005, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.diagram.ui.services.layout;
/**
* A String table for the Layout types.
*
* @author tmacdoug
*/
final public class LayoutType {
/**
* the default layout type
*/
public static final String DEFAULT = "DEFAULT"; //$NON-NLS-1$
/**
* the radial layout type
*/
public static final String RADIAL = "RADIAL"; //$NON-NLS-1$
/**
* the composite layout type
*/
public static final String COMPOSITE = "COMPOSITE"; //$NON-NLS-1$
}