本文整理匯總了Java中javax.faces.component.UIViewRoot.setViewId方法的典型用法代碼示例。如果您正苦於以下問題:Java UIViewRoot.setViewId方法的具體用法?Java UIViewRoot.setViewId怎麽用?Java UIViewRoot.setViewId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.faces.component.UIViewRoot
的用法示例。
在下文中一共展示了UIViewRoot.setViewId方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: validateSubscriptionId_ShowExternalConfiguratorIsFalse
import javax.faces.component.UIViewRoot; //導入方法依賴的package包/類
@Test
public void validateSubscriptionId_ShowExternalConfiguratorIsFalse()
throws Exception {
// given
model.setShowExternalConfigurator(false);
UIViewRoot viewRoot = mock(UIViewRoot.class);
viewRoot.setViewId(SUBSCRIPTIONADD_VIEWID);
FacesContext context = mock(FacesContext.class);
context.setViewRoot(viewRoot);
// when
UIComponent toValidate = mock(UIComponent.class);
doReturn("").when(toValidate).getClientId();
bean.validateSubscriptionId(context, toValidate,
new String());
// then
assertEquals(Boolean.FALSE,
Boolean.valueOf(model.isShowExternalConfigurator()));
}
示例2: _defaultCreateView
import javax.faces.component.UIViewRoot; //導入方法依賴的package包/類
private UIViewRoot _defaultCreateView(FacesContext context, String viewId)
{
UIViewRoot result = (UIViewRoot) context.getApplication()
.createComponent(UIViewRoot.COMPONENT_TYPE);
Locale locale = null;
String renderKitId = null;
// use the locale from the previous view if is was one which will be
// the case if this is called from NavigationHandler. There wouldn't be
// one for the initial case.
if (context.getViewRoot() != null)
{
locale = context.getViewRoot().getLocale();
renderKitId = context.getViewRoot().getRenderKitId();
}
if (locale == null)
{
locale = context.getApplication().getViewHandler().calculateLocale(context);
}
if (renderKitId == null)
{
renderKitId = context.getApplication().getViewHandler().calculateRenderKitId(context);
}
result.setLocale(locale);
result.setRenderKitId(renderKitId);
result.setViewId(viewId);
return result;
}
示例3: createUIViewRoot
import javax.faces.component.UIViewRoot; //導入方法依賴的package包/類
static public UIViewRoot createUIViewRoot(MFacesContext context)
{
UIViewRoot root = new UIViewRoot();
root.setRenderKitId("org.apache.myfaces.trinidad.core");
root.setViewId("/test-view-id.jspx");
root.setLocale(context.getLocale());
return root;
}
示例4: testInternalView
import javax.faces.component.UIViewRoot; //導入方法依賴的package包/類
public void testInternalView() throws Throwable
{
ViewDeclarationLanguageFactoryImpl vdlf =
new ViewDeclarationLanguageFactoryImpl(new NullViewDeclarationLanguageFactory());
RenderKitBootstrap.setFactories(null);
try
{
UIViewRoot viewRoot = new UIViewRoot();
String viewId = "/testURL";
viewRoot.setViewId(viewId);
viewRoot.setRenderKitId(RenderKitFactory.HTML_BASIC_RENDER_KIT);
facesContext.setViewRoot(viewRoot);
vdlf.getViewDeclarationLanguage(viewId).renderView(facesContext, viewRoot);
assertEquals("render", __internalViewCalled);
vdlf.getViewDeclarationLanguage(viewId).restoreView(facesContext, viewId);
assertEquals("restore", __internalViewCalled);
vdlf.getViewDeclarationLanguage(viewId).createView(facesContext, viewId);
assertEquals("create", __internalViewCalled);
}
finally
{
__internalViewCalled = null;
RenderKitBootstrap.clearFactories();
facesContext.release();
}
}