blob: 7b5f4142f391b4601e0ee01c23f04c02578c66a1 [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.internal.editparts;
import org.eclipse.draw2d.IFigure;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmf.runtime.diagram.ui.editparts.GraphicalEditPart;
/**
* Dummy edit part class
*
* @author mmostafa
*/
public class DummyEditPart extends GraphicalEditPart {
protected IFigure createFigure() {
return null;
}
/**
* Constructs a new instance.
*
* @param model
*/
public DummyEditPart(EObject model) {
super(model);
}
protected void addNotationalListeners() {
// no need for Listeners
}
protected void addSemanticListeners() {
//no need for Listeners
}
}