blob: 8d3205421c29355a56bbb03c4a570f52d2c57580 [file] [log] [blame]
/******************************************************************************
* 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.diagram.ui.editparts;
import org.eclipse.gef.EditPart;
import org.eclipse.gmf.runtime.emf.type.core.IElementType;
/**
* @author sshaw
*
* Interface for an editpart that can support a default insert operation.
*/
public interface IInsertableEditPart extends EditPart {
/**
* getElementType
* Method for returning the semantic type of the element that can be inserted by default
* into this editpart.
*
* @return IElementType
*/
IElementType getElementType();
}