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");
}