/****************************************************************************** * Copyright (c) 2004 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.notation; /** * * A representation of the literals of the enumeration 'Routing', * and utility methods for working with them. * * @see org.eclipse.gmf.runtime.notation.NotationPackage#getRouting() * @model * @generated */ /* * @canBeSeenBy %partners */ final public class Routing extends AbstractEnumerator { /** * The 'Manual' literal value. * * * @see #MANUAL_LITERAL * @model name="Manual" * @generated * @ordered */ final public static int MANUAL = 0; /** * The 'Rectilinear' literal value. * * * @see #RECTILINEAR_LITERAL * @model name="Rectilinear" * @generated * @ordered */ final public static int RECTILINEAR = 1; /** * The 'Tree' literal value. * * * @see #TREE_LITERAL * @model name="Tree" * @generated * @ordered */ final public static int TREE = 2; } //Routing