container = $container; $this->recordIndexKey = $recordIndexKey; $this->termIndexKey = $termIndexKey; } /** * @return TermIndex */ public function getTermIndex() { return $this->container[$this->termIndexKey]; } /** * @return RecordIndex */ public function getRecordIndex() { return $this->container[$this->recordIndexKey]; } }