Examples of AIFDesktop


Examples of com.teamcenter.rac.aif.AIFDesktop

    if (!(this.getApplicationTaskPane().getLeftHandNavigationPane() == null)) {
      this.getApplicationTaskPane().getLeftHandNavigationPane().addComponentOpenedListener(this);
      this.getApplicationTaskPane().getLeftHandNavigationPane().addComponentClosedListener(this);
      this.getApplicationTaskPane().getLeftHandNavigationPane().addSectionCompChangeListener(this);
    } else {
      AIFDesktop desktop = AIFUtility.getActiveDesktop();
      if (desktop != null && desktop.getLeftHandNavigationPane() != null) {
        desktop.getLeftHandNavigationPane().addComponentOpenedListener(this);
        desktop.getLeftHandNavigationPane().addComponentClosedListener(this);
        desktop.getLeftHandNavigationPane().addSectionCompChangeListener(this);
      }
    }
  }
View Full Code Here

Examples of com.teamcenter.rac.aif.AIFDesktop

  }


  @Override
  public void close() {
    AIFDesktop desktop = AIFUtility.getActiveDesktop();
    if (desktop != null) {
      LeftHandNavigationPane navPane = desktop.getLeftHandNavigationPane();
      if (navPane != null) {
        navPane.removeComponentOpenedListener(this);
        navPane.removeComponentClosedListener(this);
        navPane.removeSectionCompChangeListener(this);
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.