Package org.eclipse.ui.internal.dialogs

Examples of org.eclipse.ui.internal.dialogs.AboutDialog


   * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
   */
  public Object execute(ExecutionEvent event) throws ExecutionException {
    IWorkbenchWindow window = HandlerUtil
        .getActiveWorkbenchWindowChecked(event);
    new AboutDialog(window.getShell()).open();
    return null;
  }
View Full Code Here


     * (non-Javadoc) Method declared on IAction.
     */
    public void run() {
        // make sure action is not disposed
        if (workbenchWindow != null) {
      new AboutDialog(workbenchWindow.getShell()).open();
    }
    }
View Full Code Here

public class HelpAboutAction extends BaseActionDelegate {

  public void run(IAction action) {
    if (window != null) {
      new AboutDialog(window.getShell()).open();
        }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.dialogs.AboutDialog

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.