Package com.alibaba.json.test.entity.pagemodel

Examples of com.alibaba.json.test.entity.pagemodel.PageInstance


        String pageId = getNextTextValue("cid", parser); // get pageId

        current = parser.nextToken(); // move to field: segments
        assertExpectedFiled(parser.getCurrentName(), "segments", parser.getCurrentLocation());

        PageInstance pageInstance = new PageInstance();
        pageInstance.setCid(pageId);
        pageInstance.setSid(Long.valueOf(instanceId));
        pageInstance.setSegments(parseSegments(parser));
        return pageInstance;
        // 构建组件树,用于递归渲染
        // pageInstance.buildComponentTree();

    }
View Full Code Here

TOP

Related Classes of com.alibaba.json.test.entity.pagemodel.PageInstance

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.