com.solesuite.team.xpriori.actions
クラス StartAction

java.lang.Object
  上位を拡張 com.solesuite.team.xpriori.actions.StartAction
すべての実装されたインタフェース:
org.eclipse.ui.IActionDelegate, org.eclipse.ui.IWorkbenchWindowActionDelegate

public class StartAction
extends java.lang.Object
implements org.eclipse.ui.IWorkbenchWindowActionDelegate

XPriori起動メニューアクションクラス


コンストラクタの概要
StartAction()
          The constructor.
 
メソッドの概要
 void dispose()
          We can use this method to dispose of any system resources we previously allocated.
 void init(org.eclipse.ui.IWorkbenchWindow window)
          We will cache window object in order to be able to provide parent shell for the message dialog.
 void run(org.eclipse.jface.action.IAction action)
          The action has been activated.
 void selectionChanged(org.eclipse.jface.action.IAction action, org.eclipse.jface.viewers.ISelection selection)
          Selection in the workbench has been changed.
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

StartAction

public StartAction()
The constructor.

メソッドの詳細

run

public void run(org.eclipse.jface.action.IAction action)
The action has been activated. The argument of the method represents the 'real' action sitting in the workbench UI.

定義:
インタフェース org.eclipse.ui.IActionDelegate 内の run
関連項目:
IActionDelegate.run(org.eclipse.jface.action.IAction)

selectionChanged

public void selectionChanged(org.eclipse.jface.action.IAction action,
                             org.eclipse.jface.viewers.ISelection selection)
Selection in the workbench has been changed. We can change the state of the 'real' action here if we want, but this can only happen after the delegate has been created.

定義:
インタフェース org.eclipse.ui.IActionDelegate 内の selectionChanged
関連項目:
IActionDelegate.selectionChanged(org.eclipse.jface.action.IAction, org.eclipse.jface.viewers.ISelection)

dispose

public void dispose()
We can use this method to dispose of any system resources we previously allocated.

定義:
インタフェース org.eclipse.ui.IWorkbenchWindowActionDelegate 内の dispose
関連項目:
IWorkbenchWindowActionDelegate.dispose()

init

public void init(org.eclipse.ui.IWorkbenchWindow window)
We will cache window object in order to be able to provide parent shell for the message dialog.

定義:
インタフェース org.eclipse.ui.IWorkbenchWindowActionDelegate 内の init
関連項目:
IWorkbenchWindowActionDelegate.init(org.eclipse.ui.IWorkbenchWindow)