blob: 37f33d33d8f7769a616ae061189529e383ece1a1 [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.figures;
import org.eclipse.gef.examples.logicdesigner.model.Gate;
public class GateFigure extends OutputFigure {
public GateFigure() {
FixedConnectionAnchor inputConnectionAnchorA, inputConnectionAnchorB;
inputConnectionAnchorA = new FixedConnectionAnchor(this);
inputConnectionAnchorA.offsetH = 4;
inputConnectionAnchorB = new FixedConnectionAnchor(this);
inputConnectionAnchorB.offsetH = 10;
inputConnectionAnchors.addElement(inputConnectionAnchorA);
inputConnectionAnchors.addElement(inputConnectionAnchorB);
connectionAnchors.put(Gate.TERMINAL_A, inputConnectionAnchorA);
connectionAnchors.put(Gate.TERMINAL_B, inputConnectionAnchorB);
}
public String toString() {
return "GateFigure"; //$NON-NLS-1$
}
}