}
public void nullSafeSet(PreparedStatement st, Object value, int index)
throws HibernateException, SQLException {
GMLInfoImpl gmlInfo = (GMLInfoImpl)value;
if (gmlInfo == null) {
st.setString(index, GMLInfo.SrsNameStyle.NORMAL.name());
} else {
st.setString(index, gmlInfo.getSrsNameStyle().name());
}
}