blob: 6a0bd97597728c332aac2e39a29a6474ffad809f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2010 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.gef.examples.flow.policies;
import org.eclipse.gef.commands.Command;
import org.eclipse.gef.editpolicies.GraphicalNodeEditPolicy;
import org.eclipse.gef.examples.flow.model.Activity;
import org.eclipse.gef.examples.flow.model.Transition;
import org.eclipse.gef.examples.flow.model.commands.ConnectionCreateCommand;
import org.eclipse.gef.examples.flow.model.commands.ReconnectSourceCommand;
import org.eclipse.gef.examples.flow.model.commands.ReconnectTargetCommand;
import org.eclipse.gef.examples.flow.parts.ActivityPart;
import org.eclipse.gef.requests.CreateConnectionRequest;
import org.eclipse.gef.requests.ReconnectRequest;
/**
*
* Created on Jul 17, 2003
*/
public class ActivityNodeEditPolicy extends GraphicalNodeEditPolicy {
/**
* @see GraphicalNodeEditPolicy#getConnectionCompleteCommand(CreateConnectionRequest)
*/
protected Command getConnectionCompleteCommand(
CreateConnectionRequest request) {
ConnectionCreateCommand cmd = (ConnectionCreateCommand) request
.getStartCommand();
cmd.setTarget(getActivity());
return cmd;
}
/**
* @see GraphicalNodeEditPolicy#getConnectionCreateCommand(CreateConnectionRequest)
*/
protected Command getConnectionCreateCommand(CreateConnectionRequest request) {
ConnectionCreateCommand cmd = new ConnectionCreateCommand();
cmd.setSource(getActivity());
request.setStartCommand(cmd);
return cmd;
}
/**
* Returns the ActivityPart on which this EditPolicy is installed
*
* @return the
*/
protected ActivityPart getActivityPart() {
return (ActivityPart) getHost();
}
/**
* Returns the model associated with the EditPart on which this EditPolicy
* is installed
*
* @return the model
*/
protected Activity getActivity() {
return (Activity) getHost().getModel();
}
/**
* @see GraphicalNodeEditPolicy#getReconnectSourceCommand(ReconnectRequest)
*/
protected Command getReconnectSourceCommand(ReconnectRequest request) {
ReconnectSourceCommand cmd = new ReconnectSourceCommand();
cmd.setTransition((Transition) request.getConnectionEditPart()
.getModel());
cmd.setSource(getActivity());
return cmd;
}
/**
* @see GraphicalNodeEditPolicy#getReconnectTargetCommand(ReconnectRequest)
*/
protected Command getReconnectTargetCommand(ReconnectRequest request) {
ReconnectTargetCommand cmd = new ReconnectTargetCommand();
cmd.setTransition((Transition) request.getConnectionEditPart()
.getModel());
cmd.setTarget(getActivity());
return cmd;
}
}