1<?php
2
3/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5/**
6 * Interface ilAsqQuestionNavigationAware
7 *
8 * @author    Björn Heyser <info@bjoernheyser.de>
9 * @version    $Id$
10 *
11 * @package    Services/AssessmentQuestion
12 */
13interface ilAsqQuestionNavigationAware
14{
15    /**
16     * @return \ILIAS\UI\Component\Component
17     */
18    public function getQuestionButtonsHTML() : \ILIAS\UI\Component\Component;
19
20    /**
21     * @return \ILIAS\UI\Component\Component
22     */
23    public function getQuestionPlayerActionsHTML() : \ILIAS\UI\Component\Component;
24
25    /**
26     * @return \ILIAS\UI\Component\Link\Link
27     */
28    public function getQuestionActionHandlingLink() : \ILIAS\UI\Component\Link\Link;
29}
30