Package org.emftrace.emffit.ui.builders.parts

Examples of org.emftrace.emffit.ui.builders.parts.FactorPart


   * emffit_gui.builders.guis.AbstractFactorTableGUIBuilder#buildFactorPart
   * (org.eclipse.swt.widgets.Composite)
   */
  @Override
  protected FactorPart buildFactorPart(Composite parent, int level) {
    return new FactorPart(parent, level, factorDescriptionCPListProvider,
        factorFlexibilityCPListProvider,
        factorChangeabilityCPListProvider,
        factorInfluenceCPListProvider);
  }
View Full Code Here


   *            the parent Composite
   * @param level the level of the entry at the table
   * @return the created part
   */
  protected ListPart addFactorPart(final Factor factor, Composite parent, int level) {
    final FactorPart part = buildFactorPart(parent, level);
    partMap.put(factor, part);
    setFactorPartValues(part, factor);
    setFactorPartListeners(part, factor);
    setFactorModelElementListeners(factor, part);
    return part;
View Full Code Here

TOP

Related Classes of org.emftrace.emffit.ui.builders.parts.FactorPart

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.