本文整理汇总了Java中org.uberfire.ext.widgets.core.client.wizards.WizardView类的典型用法代码示例。如果您正苦于以下问题:Java WizardView类的具体用法?Java WizardView怎么用?Java WizardView使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
WizardView类属于org.uberfire.ext.widgets.core.client.wizards包,在下文中一共展示了WizardView类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setup
import org.uberfire.ext.widgets.core.client.wizards.WizardView; //导入依赖的package包/类
@Before
public void setup() {
pluginHandler = spy(new PluginHandler(wizardManagedInstance,
brlConditionColumnPlugin,
conditionColumnPlugin,
actionRetractFactPlugin,
actionSetFactPlugin,
actionWorkItemSetFieldPlugin,
actionWorkItemPlugin,
brlActionColumnPlugin));
pluginHandler.init(presenter);
wizard = spy(new NewGuidedDecisionTableColumnWizard(mock(WizardView.class),
summaryPage,
translationService,
popoverUtils));
doReturn(GuidedDecisionTable52.TableFormat.EXTENDED_ENTRY).when(model).getTableFormat();
doReturn(model).when(presenter).getModel();
doReturn(eventBus).when(presenter).getEventBus();
doReturn(oracle).when(presenter).getDataModelOracle();
}
示例2: NewWorkspaceProjectWizardExtended
import org.uberfire.ext.widgets.core.client.wizards.WizardView; //导入依赖的package包/类
public NewWorkspaceProjectWizardExtended(final Caller<WorkspaceProjectService> projectService,
final PlaceManager placeManager,
final Event<NotificationEvent> notificationEvent,
final POMWizardPage pomWizardPage,
final BusyIndicatorView busyIndicatorView,
final ConflictingRepositoriesPopup conflictingRepositoriesPopup,
final WorkspaceProjectContext context,
final WizardView view,
final KiePOMDefaultOptions pomDefaultOptions) {
super(projectService,
placeManager,
notificationEvent,
pomWizardPage,
busyIndicatorView,
conflictingRepositoriesPopup,
context,
pomDefaultOptions);
super.view = view;
}
示例3: NewGuidedDecisionTableColumnWizard
import org.uberfire.ext.widgets.core.client.wizards.WizardView; //导入依赖的package包/类
@Inject
public NewGuidedDecisionTableColumnWizard(final WizardView view,
final SummaryPage summaryPage,
final TranslationService translationService,
final DecisionTablePopoverUtils popoverUtils) {
this.view = view;
this.summaryPage = summaryPage;
this.translationService = translationService;
this.popoverUtils = popoverUtils;
}
示例4: CreateAnnotationWizardExtended
import org.uberfire.ext.widgets.core.client.wizards.WizardView; //导入依赖的package包/类
public CreateAnnotationWizardExtended(SearchAnnotationPage searchAnnotationPage,
SyncBeanManager iocManager,
WizardView view
) {
super(searchAnnotationPage,
iocManager);
super.view = view;
//emulates the execution for the @PostConstruct annotated method
init();
}