Package org.hdiv.state

Examples of org.hdiv.state.IParameter


    // Restore state
    IState state = stateUtil.restoreState(stateValue);
    assertNotNull(state);

    IParameter param = state.getParameter("param");
    List<String> values = param.getValues();
    assertTrue(values.size() == 1);

    String value = values.get(0);
    assertEquals("value", value);
View Full Code Here

TOP

Related Classes of org.hdiv.state.IParameter

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.