blob: 57acaaed39a092a1147504bd2f6862033e3a5d5e [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2007 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 implementation
//------------------------------------------------------------------------------
/**
*
*/
package org.eclipse.epf.diagramming.base.policies;
import org.eclipse.gef.Handle;
import org.eclipse.gef.commands.Command;
import org.eclipse.gef.requests.ChangeBoundsRequest;
import org.eclipse.gmf.runtime.diagram.ui.editpolicies.ResizableShapeEditPolicy;
/**
* @author Shashidhar Kannoori
*
*/
public class ActivityNodeResizableEditPolicy extends ResizableShapeEditPolicy {
/**
*
*/
public ActivityNodeResizableEditPolicy() {
// TODO Auto-generated constructor stub
}
protected Command getMoveCommand(ChangeBoundsRequest request) {
// TODO Auto-generated method stub
return super.getMoveCommand(request);
}
protected void replaceHandleDragEditPartsTracker(Handle handle) {
// TODO Auto-generated method stub
super.replaceHandleDragEditPartsTracker(handle);
}
}