Package jp.co.nskint.uq.pd.signage.model.xml

Examples of jp.co.nskint.uq.pd.signage.model.xml.Block


        Key id = TimeLineService.createNewKey();
        long tlid = id.getId();
        // ブロック情報の作成
        final String blockId = "0";
        Block block = cretateBlock(blockId, lid);

        // スケジュール情報の作成
        final String scheduleId = "0";
        Schedule schedule = cretateSchedule(scheduleId, blockId);
View Full Code Here


     * @param layoutId
     *            レイアウトID
     * @return ブロック情報
     */
    public Block cretateBlock(String blockId, String layoutId){
        Block block = new Block();
        block.setId(blockId);
        block.setLayoutId(layoutId);

        return block;
    }
View Full Code Here

TOP

Related Classes of jp.co.nskint.uq.pd.signage.model.xml.Block

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.