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


Java WizardView类代码示例

本文整理汇总了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();
}
 
开发者ID:kiegroup,项目名称:drools-wb,代码行数:23,代码来源:PluginHandlerTest.java

示例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;
}
 
开发者ID:kiegroup,项目名称:kie-wb-common,代码行数:21,代码来源:NewWorkspaceProjectWizardTest.java

示例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;
}
 
开发者ID:kiegroup,项目名称:drools-wb,代码行数:11,代码来源:NewGuidedDecisionTableColumnWizard.java

示例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();
}
 
开发者ID:kiegroup,项目名称:kie-wb-common,代码行数:11,代码来源:CreateAnnotationWizardTest.java


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