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

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


        final String blockId = "0";
        Block block = cretateBlock(blockId, lid);

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

        // タイムラインXMLモデルの作成
        TimeLineXml timelineXml = cretateTimeLineXml(tlid, name, block, schedule);

        TimeLine timeline = new TimeLine();
View Full Code Here


     * @param blockId
     *            ブロックID
     * @return スケジュール情報
     */
    public Schedule cretateSchedule(String scheduleId, String blockId){
        Schedule schedule = new Schedule();
        schedule.setId(scheduleId);
        schedule.setBlockId(blockId);

        return schedule;
    }
View Full Code Here

TOP

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

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.