View constructor

View(
  1. AbsDatabase db,
  2. String name,
  3. AbsSelect select
)

Implementation

View(AbsDatabase db, String name, AbsSelect select) {
  this.db = db;
  this.name = name;
  this._select = select;
}