Package org.pirkaengine.core

Examples of org.pirkaengine.core.Category


        Assert.assertEquals("タイトル", target.eval("title", model));
    }

    @Test
    public void eval_getter() {
        Category category = new Category();
        category.id = 10;
        Item item = new Item();
        item.name = "名称";
        item.category = category;
        HashMap<String, Object> model = getModel("item", item);
View Full Code Here

TOP

Related Classes of org.pirkaengine.core.Category

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.