Package er.bugtracker

Examples of er.bugtracker.Difficulty


    TestItemState requirement = TestItemState.clazz.createAndInsertObject(editingContext);
    requirement._setValueForPrimaryKey("rqmt", "oid");
    requirement.setSortOrder(Integer.valueOf(4));
    requirement.setName("Requirement");

    Difficulty hardDifficulty = Difficulty.clazz.createAndInsertObject(editingContext);
    hardDifficulty._setValueForPrimaryKey(Integer.valueOf(1), "id");
    hardDifficulty.setDifficultyDescription("Hard");

    Difficulty mediumDifficulty = Difficulty.clazz.createAndInsertObject(editingContext);
    mediumDifficulty._setValueForPrimaryKey(Integer.valueOf(2), "id");
    mediumDifficulty.setDifficultyDescription("Medium");

    Difficulty easyDifficulty = Difficulty.clazz.createAndInsertObject(editingContext);
    easyDifficulty._setValueForPrimaryKey(Integer.valueOf(3), "id");
    easyDifficulty.setDifficultyDescription("Easy");

    RequirementSubType essential = RequirementSubType.clazz.createAndInsertObject(editingContext);
    essential._setValueForPrimaryKey(Integer.valueOf(1), "id");
    essential.setSubTypeDescription("Essential");
View Full Code Here

TOP

Related Classes of er.bugtracker.Difficulty

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.