Package org.auraframework.component.auradev.TestDataProviderController

Examples of org.auraframework.component.auradev.TestDataProviderController.Item


    private final List<Item> items;
   
    public TestDataProviderModel() throws Exception {
        this.items = new ArrayList<>(10);
        for (int i = 0; i < 10; i++) {
            items.add(new Item("label" + i, "value" + i));
        }
    }
View Full Code Here

TOP

Related Classes of org.auraframework.component.auradev.TestDataProviderController.Item

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.