blob: 4e72548bedef1b6ad7b8d55c5c4c859187b238af [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.logicdesigner.edit;
import org.eclipse.gef.EditPart;
import org.eclipse.gef.Request;
import org.eclipse.gef.commands.Command;
import org.eclipse.gef.examples.logicdesigner.model.LogicLabel;
import org.eclipse.gef.examples.logicdesigner.model.commands.LogicLabelCommand;
public class LogicLabelEditPolicy extends LogicElementEditPolicy {
public Command getCommand(Request request) {
if (NativeDropRequest.ID.equals(request.getType()))
return getDropTextCommand((NativeDropRequest) request);
return super.getCommand(request);
}
protected Command getDropTextCommand(NativeDropRequest request) {
LogicLabelCommand command = new LogicLabelCommand(
(LogicLabel) getHost().getModel(), (String) request.getData());
return command;
}
public EditPart getTargetEditPart(Request request) {
if (NativeDropRequest.ID.equals(request.getType()))
return getHost();
return super.getTargetEditPart(request);
}
}