示例#1
0
 /**
  * Loads the descriptions associated with the daos
  *
  * @param aDAOUtils
  * @param aLocale
  */
 public void loadDescriptions(DAOUtils aDAOUtils, Locale aLocale) {
   aDAOUtils.loadObjects(
       NewUtil.equal((Integer) eyeWearDAO.getId(), Constants.ALL_OPTION_VAL) ? null : eyeWearDAO,
       NewUtil.equal((Integer) headWearDAO.getId(), Constants.ALL_OPTION_VAL) ? null : headWearDAO,
       NewUtil.equal((Integer) pantWearDAO.getId(), Constants.ALL_OPTION_VAL) ? null : pantWearDAO,
       NewUtil.equal((Integer) weatherConditionDAO.getId(), Constants.ALL_OPTION_VAL)
           ? null
           : weatherConditionDAO,
       NewUtil.equal((Integer) coursePlayed.getId(), Constants.ALL_OPTION_VAL)
           ? null
           : coursePlayed);
   strFactory = LabelStringFactory.getInstance(aLocale);
 }
示例#2
0
 /**
  * Setter
  *
  * @param aCourseId
  */
 public void setCoursePlayedId(int aCourseId) {
   coursePlayed.setId(aCourseId);
 }
示例#3
0
 /**
  * Getter
  *
  * @return
  */
 public String getCoursePlayedDescription() {
   return NewUtil.equal((Integer) coursePlayed.getId(), Constants.ALL_OPTION_VAL)
       ? strFactory.getString(Constants.ALL_OPTION_LBL_KEY)
       : coursePlayed.getDescription();
 }
示例#4
0
 /**
  * Getter
  *
  * @return
  */
 public int getCoursePlayedId() {
   return (Integer) coursePlayed.getId();
 }