package com.quantum.model; import java.sql.SQLException; import com.quantum.sql.SQLHelper; class ViewImpl extends EntityImpl implements View { public ViewImpl(Bookmark bookmark, String schema, String name) { super(bookmark, schema, name, VIEW_TYPE); } public Integer getSize() { Integer size = null; try { size = new Integer(SQLHelper.getSize( getBookmark().getConnection(), getQualifiedName(), getBookmark().getAdapter())); } catch (SQLException e) { } catch (ConnectionException e) { } return size; } }