}
@Action
public void setMediumValueToTriglycerides() {
try {
StandardValue st = FacadeDB.getInstance().getStandardValuesBroker().getStandardValueByParamType(StandardParams.TRIGLYCERIDES);
this.jTxtTriglycerides.setText(st != null ? st.getMedium().toString() : StandardParams.TRIGLYCERIDES.getMedium().toString());
} catch (ExceptionDAO edao) {
this.jTxtTriglycerides.setText(StandardParams.TRIGLYCERIDES.getMedium().toString());
FacadeDB.getInstance().refreshSession();
}
}