当前位置: 首页>>代码示例>>Java>>正文


Java INewWizard.init方法代码示例

本文整理汇总了Java中org.eclipse.ui.INewWizard.init方法的典型用法代码示例。如果您正苦于以下问题:Java INewWizard.init方法的具体用法?Java INewWizard.init怎么用?Java INewWizard.init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.eclipse.ui.INewWizard的用法示例。


在下文中一共展示了INewWizard.init方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: execute

import org.eclipse.ui.INewWizard; //导入方法依赖的package包/类
public Object execute(ExecutionEvent event) throws ExecutionException {

		final INewWizard wizard = new NewModelWizard();

		// Initialize the selection
		final IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
		final ISelectionService service = window.getSelectionService();
		final IStructuredSelection selection = (IStructuredSelection)service
				.getSelection("org.eclipse.sirius.ui.tools.views.model.explorer"); //$NON-NLS-1$
		wizard.init(PlatformUI.getWorkbench(), selection);

		// Open the new model wizard
		final WizardDialog dialog = new WizardDialog(window.getShell(), wizard);
		dialog.open();
		return null;
	}
 
开发者ID:polarsys,项目名称:time4sys,代码行数:17,代码来源:NewTime4SysModel.java

示例2: run

import org.eclipse.ui.INewWizard; //导入方法依赖的package包/类
/**
 * Create the new-plan-resource wizard and open the dialog.
 * If the active part is an EnsembleCommonNavigator, get the StructuredSelection from it;
 * otherwise the selection is empty.
 * @param action ignored
 */
@Override
public void run(IAction action) {
	IStructuredSelection structuredSeleciton = StructuredSelection.EMPTY;
	IWorkbench workbench = PlatformUI.getWorkbench();
	INewWizard newResourceWizard = new NewPlanResourceWizard();
	IWorkbenchPart part = window.getPartService().getActivePart();
	if (part instanceof EnsembleCommonNavigator) {
		ISelection selection = ((EnsembleCommonNavigator) part).getCommonViewer().getSelection();
		if(selection instanceof IStructuredSelection) {
			structuredSeleciton = (IStructuredSelection)selection;
		}
	}
	newResourceWizard.init(workbench, structuredSeleciton);
	Shell parent = workbench.getActiveWorkbenchWindow().getShell();
	WizardDialog wizardDialog = new WizardDialog(parent, newResourceWizard);
	wizardDialog.create();
	wizardDialog.open();
}
 
开发者ID:nasa,项目名称:OpenSPIFe,代码行数:25,代码来源:NewPlanResourceAction.java

示例3: run

import org.eclipse.ui.INewWizard; //导入方法依赖的package包/类
@Override
public void run() {
	Shell shell= getShell();
	if (!doCreateProjectFirstOnEmptyWorkspace(shell)) {
		return;
	}
	try {
		INewWizard wizard= createWizard();
		wizard.init(PlatformUI.getWorkbench(), getSelection());

		WizardDialog dialog= new WizardDialog(shell, wizard);
		PixelConverter converter= new PixelConverter(JFaceResources.getDialogFont());
		dialog.setMinimumPageSize(converter.convertWidthInCharsToPixels(70), converter.convertHeightInCharsToPixels(20));
		dialog.create();
		int res= dialog.open();
		if (res == Window.OK && wizard instanceof NewElementWizard) {
			fCreatedElement= ((NewElementWizard)wizard).getCreatedElement();
		}

		notifyResult(res == Window.OK);
	} catch (CoreException e) {
		String title= NewWizardMessages.AbstractOpenWizardAction_createerror_title;
		String message= NewWizardMessages.AbstractOpenWizardAction_createerror_message;
		ExceptionHandler.handle(e, shell, title, message);
	}
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:27,代码来源:AbstractOpenWizardAction.java

示例4: run

import org.eclipse.ui.INewWizard; //导入方法依赖的package包/类
public void run(String[] params, ICheatSheetManager manager) {

    if ((params != null) && (params.length > 0)) {
      IWorkbench workbench = PlatformUI.getWorkbench();
      INewWizard wizard = getWizard(params[0]);
      wizard.init(workbench, new StructuredSelection());
      WizardDialog dialog = new WizardDialog(PlatformUI.getWorkbench()
          .getActiveWorkbenchWindow().getShell(), wizard);
      dialog.create();
      dialog.open();

      // did the wizard succeed ?
      notifyResult(dialog.getReturnCode() == Window.OK);
    }
  }
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:16,代码来源:OpenNewMRClassWizardAction.java

示例5: run

import org.eclipse.ui.INewWizard; //导入方法依赖的package包/类
@Override
public void run() {
  Shell localShell = getShell();
  if (!doCreateProjectFirstOnEmptyWorkspace(localShell)) {
    return;
  }

  try {
    INewWizard wizard = createWizard();
    wizard.init(PlatformUI.getWorkbench(), getSelection());

    WizardDialog dialog = new WizardDialog(localShell, wizard);
    IPixelConverter converter =
        PixelConverterFactory.createPixelConverter(JFaceResources.getDialogFont());
    dialog.setMinimumPageSize(converter.convertWidthInCharsToPixels(70),
        converter.convertHeightInCharsToPixels(20));
    dialog.create();
    int res = dialog.open();
    if (res == Window.OK && wizard instanceof NewElementWizard) {
      createdElement = ((NewElementWizard) wizard).getCreatedElement();
    }

    notifyResult(res == Window.OK);
  } catch (CoreException e) {
    String title = NewWizardMessages.AbstractOpenWizardAction_createerror_title;
    String message = NewWizardMessages.AbstractOpenWizardAction_createerror_message;
    ExceptionHandler.handle(e, localShell, title, message);
  }
}
 
开发者ID:gwt-plugins,项目名称:gwt-eclipse-plugin,代码行数:30,代码来源:AbstractOpenWizardAction.java

示例6: run

import org.eclipse.ui.INewWizard; //导入方法依赖的package包/类
@Override
public void run(IAction action) {
	IWorkbench workbench = PlatformUI.getWorkbench();
	INewWizard newResourceWizard = getNewResourceWizard();
	newResourceWizard.init(workbench, getCurrentSelection());
	Shell parent = workbench.getActiveWorkbenchWindow().getShell();
	WizardDialog wizardDialog = new WizardDialog(parent, newResourceWizard);
	wizardDialog.create();
	wizardDialog.open();
}
 
开发者ID:nasa,项目名称:OpenSPIFe,代码行数:11,代码来源:NewResourceAction.java


注:本文中的org.eclipse.ui.INewWizard.init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。