Package com.odb.core.dao.dto

Examples of com.odb.core.dao.dto.ViewConfiguration


  /* (non-Javadoc)
   * @see org.springframework.jdbc.core.RowMapper#mapRow(java.sql.ResultSet, int)
   */
  public ViewConfiguration mapRow(ResultSet rs, int rowNum) throws SQLException {
    ViewConfiguration vc = new ViewConfiguration();
    vc.setStartX(rs.getInt("VIEW_DRAW_X"));
    vc.setStartY(rs.getInt("VIEW_DRAW_Y"));
    vc.setViewHeight(rs.getInt("VIEW_HIEGHT"));
    vc.setViewWidth(rs.getInt("VIEW_WIDTH"));
    vc.setViewLocationID(rs.getString("VIEW_LOCATION_ID"));
    return vc;
  }
View Full Code Here

TOP

Related Classes of com.odb.core.dao.dto.ViewConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.