コード例 #1
0
ファイル: OpenLocationAction.java プロジェクト: aptana/rdt
 /* (non-Javadoc)
  * Method declared on SelectionDispatchAction.
  */
 public void run(IStructuredSelection selection) {
   if (!checkEnabled(selection)) {
     return;
   }
   for (Iterator iter = selection.iterator(); iter.hasNext(); ) {
     boolean noError = CallHierarchyUI.openInEditor(iter.next(), getShell(), getDialogTitle());
     if (!noError) return;
   }
 }