Package com.sun.faces.facelets.component

Examples of com.sun.faces.facelets.component.UIRepeat


    assertTrue(this.dataModel.getSelectedRow() != this.dataModel.getRowData());
  }

  public void testProcessActionWithUIRepeat() {

    UIRepeat uiRepeat = new UIRepeat();
    uiRepeat.setValue(this.dataModel);
    UICommand commandButton = new UICommand();
    uiRepeat.getChildren().add(commandButton);
    this.viewToTest.getChildren().add(uiRepeat);

    Method indexMutator = ReflectionUtils.findMethod(UIRepeat.class, "setIndex", new Class[] { FacesContext.class,
        int.class });
    indexMutator.setAccessible(true);
View Full Code Here


  @Test
  public void shouldReturnNullIfNotSuitableParent() throws Exception {
    UIPanel p1 = new UIPanel();
    UIInput input = new UIInput();
    input.setParent(p1);
    UIRepeat actual = FacesUtils.findParentOfType(input, UIRepeat.class);
    assertThat(actual, is(nullValue()));
  }
View Full Code Here

TOP

Related Classes of com.sun.faces.facelets.component.UIRepeat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.