當前位置: 首頁>>代碼示例>>Java>>正文


Java UIViewRoot.setViewId方法代碼示例

本文整理匯總了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()));
}
 
開發者ID:servicecatalog,項目名稱:oscm,代碼行數:24,代碼來源:SubscriptionWizardConversationTest.java

示例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;
}
 
開發者ID:apache,項目名稱:myfaces-trinidad,代碼行數:34,代碼來源:InternalViewHandlingStrategy.java

示例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;
}
 
開發者ID:apache,項目名稱:myfaces-trinidad,代碼行數:9,代碼來源:RenderKitBootstrap.java

示例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();
  }
}
 
開發者ID:apache,項目名稱:myfaces-trinidad,代碼行數:29,代碼來源:ViewDeclarationLanguageFactoryImplTest.java


注:本文中的javax.faces.component.UIViewRoot.setViewId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。