Package er.bugtracker

Examples of er.bugtracker.RequirementType$RequirementTypeClazz


    RequirementSubType cosmetic = RequirementSubType.clazz.createAndInsertObject(editingContext);
    cosmetic._setValueForPrimaryKey(Integer.valueOf(4), "id");
    cosmetic.setSubTypeDescription("Cosmetic");

    RequirementType interfaceType = RequirementType.clazz.createAndInsertObject(editingContext);
    interfaceType._setValueForPrimaryKey(Integer.valueOf(1), "id");
    interfaceType.setTypeDescription("Interface");

    RequirementType documentationType = RequirementType.clazz.createAndInsertObject(editingContext);
    documentationType._setValueForPrimaryKey(Integer.valueOf(2), "id");
    documentationType.setTypeDescription("Documentation");

    RequirementType backendType = RequirementType.clazz.createAndInsertObject(editingContext);
    backendType._setValueForPrimaryKey(Integer.valueOf(3), "id");
    backendType.setTypeDescription("Backend");

    RequirementType communicationType = RequirementType.clazz.createAndInsertObject(editingContext);
    communicationType._setValueForPrimaryKey(Integer.valueOf(4), "id");
    communicationType.setTypeDescription("Communication");
  }
View Full Code Here

TOP

Related Classes of er.bugtracker.RequirementType$RequirementTypeClazz

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.