/** * 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); }
/** * Getter * * @return */ public final String getWeatherConditionTypeDescription() { return NewUtil.equal((Integer) weatherConditionDAO.getId(), Constants.ALL_OPTION_VAL) ? strFactory.getString(Constants.ALL_OPTION_LBL_KEY) : weatherConditionDAO.getDescription(); }
/** * Setter * * @param aWeatherConditionTypeId */ public final void setWeatherConditionTypeId(int aWeatherConditionTypeId) { weatherConditionDAO.setId(aWeatherConditionTypeId); }
/** * Getter * * @return */ public final int getWeatherConditionTypeId() { return (Integer) weatherConditionDAO.getId(); }