當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。