Package org.emftrace.quarc.ui.zest.figures

Examples of org.emftrace.quarc.ui.zest.figures.SoftGoalFigure


    globalTopFigure.setLayoutManager(globalTopFigureLayout);
    globalTopFigure.setOpaque(false);

    AbstractDecoratorFigure bodyFigure = null;
    if (element instanceof Goal) {
      bodyFigure = new SoftGoalFigure(element.getName(), isExpandable);
      elementFigure = new ElementFigure(bodyFigure,
          decompostionTypeFigure, globalTopFigure);
    } else if (element instanceof Flaw) {
      bodyFigure = new FlawFigure(element.getName(),
          ((Flaw) element).getInterpretationRule(), ((Flaw) element).getMetrics(), isExpandable);
View Full Code Here

TOP

Related Classes of org.emftrace.quarc.ui.zest.figures.SoftGoalFigure

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.