spct.setLongDescription("Physics Long Description");
types.add(spct);
}
private static void createAwardTypes(List<AbstractLookupType> types) {
AwardType at = new AwardType();
at.setId(25);
at.setKey("firstPlace");
at.setLabel("First Place Label");
at.setDescription("First Place Description");
at.setLongDescription("First Place Long Description");
types.add(at);
at = new AwardType();
at.setId(26);
at.setKey("secondPlace");
at.setLabel("Second Place Label");
at.setDescription("Second Place Description");
at.setLongDescription("Second Place Long Description");
types.add(at);
at = new AwardType();
at.setId(27);
at.setKey("thirdPlace");
at.setLabel("Third Place Label");
at.setDescription("Third Place Description");
at.setLongDescription("Third Place Long Description");
types.add(at);
}