blob: 2d5cc12fe1a49ad161ffdfc8bb1e23ea26ac1aec [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2004, 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.emf.type.core;
/**
* A type that requires a semantic hint for view creation.
*
* <p>
* This interface may be implemented by clients if the class extends the
* abstract implementation
* {@link org.eclipse.gmf.runtime.emf.type.core.ElementType} as
* {@link IElementType} is not meant to be implemented by clients.
* </p>
*
* @author cmahoney
*/
public interface IHintedType
extends IElementType {
/**
* Gets the semantic hint required for view creation.
*
* @return the semantic hint.
*/
String getSemanticHint();
}