Package de.odysseus.calyxo.panels.conf

Examples of de.odysseus.calyxo.panels.conf.ItemConfig


    ListConfig list = context.lookupListConfig("list");
    assertNotNull(list);
    Iterator items = list.getItemConfigs();
    assertTrue(items.hasNext());
    ItemConfig item = (ItemConfig)items.next();
    context.push(item); // --> /panel/item

    param = context.lookupParamConfig("param");
    assertNotNull(param);
    assertEquals("test.item.param", param.getValue());
View Full Code Here

TOP

Related Classes of de.odysseus.calyxo.panels.conf.ItemConfig

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.