本文整理匯總了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();
}