blob: 63eb5967adb4d3a186ed7413f0f8f61ff065b829 [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.model.commands;
import org.eclipse.draw2d.geometry.Dimension;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.gef.commands.Command;
import org.eclipse.gef.examples.logicdesigner.model.Wire;
public class BendpointCommand extends Command {
protected int index;
protected Point location;
protected Wire wire;
private Dimension d1, d2;
protected Dimension getFirstRelativeDimension() {
return d1;
}
protected Dimension getSecondRelativeDimension() {
return d2;
}
protected int getIndex() {
return index;
}
protected Point getLocation() {
return location;
}
protected Wire getWire() {
return wire;
}
public void redo() {
execute();
}
public void setRelativeDimensions(Dimension dim1, Dimension dim2) {
d1 = dim1;
d2 = dim2;
}
public void setIndex(int i) {
index = i;
}
public void setLocation(Point p) {
location = p;
}
public void setWire(Wire w) {
wire = w;
}
}