1 package com.quantum.model;
3 import java.sql.SQLException;
5 import com.quantum.sql.MultiSQLServer;
8 class ViewImpl extends EntityImpl implements View {
9 public ViewImpl(Bookmark bookmark, String schema, String name, boolean isSynonym) {
10 super(bookmark, schema, name, VIEW_TYPE, isSynonym);
13 public Integer getSize() {
16 size = new Integer(MultiSQLServer.getInstance().getSize(getBookmark(),
17 getBookmark().getConnection(), getQualifiedName(),
18 getBookmark().getAdapter()));
19 } catch (SQLException e) {
20 } catch (ConnectionException e) {