1<?php
2/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4/**
5 * Interface ilObjAnswerScoringAdjustable
6 *
7 * This is the extended interface for questions, which support the relevant object-class methods for post-test-scoring
8 * adjustments. This is the object-part.
9 *
10 * @author		Maximilian Becker <mbecker@databay.de>
11 *
12 * @version		$Id$
13 *
14 * @ingroup 	ModulesTestQuestionPool
15 */
16interface ilObjAnswerScoringAdjustable
17{
18    /**
19     * Saves the answer specific records into a question types answer table.
20     *
21     * @return mixed
22     */
23    public function saveAnswerSpecificDataToDb();
24}
25