Package org.eclipse.gef.examples.logicdesigner.figures

Examples of org.eclipse.gef.examples.logicdesigner.figures.OutputFigure


/**
* Returns a newly created Figure.
*/
protected IFigure createFigure() {
  OutputFigure figure;
  if (getModel() == null)
    return null;
  else if (getModel() instanceof LiveOutput)
    figure =  new LiveOutputFigure();
  else if (getModel() instanceof GroundOutput)
    figure = new GroundFigure();
  else
    figure = new OutputFigure();
  return figure;
}
View Full Code Here


* Returns a newly created Figure of this.
*
* @return A new Figure of this.
*/
protected IFigure createFigure() {
  OutputFigure figure;
  if (getModel() == null)
    return null;
  if (getModel() instanceof OrGate
    figure = new OrGateFigure();
  else if (getModel() instanceof AndGate)
View Full Code Here

TOP

Related Classes of org.eclipse.gef.examples.logicdesigner.figures.OutputFigure

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.