All Downloads are FREE. Search and download functionalities are using the official Maven repository.

widebase.stream.handler.cq.TableMap.scala Maven / Gradle / Ivy

package widebase.stream.handler.cq

import scala.collection.mutable.LinkedHashMap

import widebase.db.table.Table

/** Stores tables.
 *
 * Format:
 * {{{
 * table name / series of table
 * }}}
 *
 * @author myst3r10n
 */
class TableMap extends LinkedHashMap[String, Table] {

  /** A serie of names. */
  def names = keys

  /** A serie of tables. */
  def tables = values

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy