Package com.eclipserunner.views

Examples of com.eclipserunner.views.TreeMode


    initializeTreeModeAdapter();
  }

  private void initializeTreeModeAdapter() {
    TreeMode treeMode = null;
    try {
      treeMode = TreeMode.valueOf(getPreferenceValue(PreferenceConstants.TREE_MODE));
    } catch (Exception e) {
      treeMode = TreeMode.FLAT_MODE;
    }
View Full Code Here


  public ToggleTreeModeAction(IRunnerView runnerView, TreeMode mode) {
    this.mode = mode;
    this.runnerView = runnerView;

    TreeMode currentTreeMode = RunnerModelProvider.getInstance().getCurrentTreeMode();
    if (mode.equals(currentTreeMode)) {
      setChecked(true);
    } else {
      setChecked(false);
    }
View Full Code Here

TOP

Related Classes of com.eclipserunner.views.TreeMode

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.