-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Peter Petkanic
committed
Jun 14, 2016
1 parent
0282503
commit 1044581
Showing
13 changed files
with
208 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<responses xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="response.xsd"> | ||
<response> | ||
<surveyId>1</surveyId> | ||
<questions> | ||
<question> | ||
<questionId>2</questionId> | ||
<answers> | ||
<answerId>5</answerId> | ||
<answerId>8</answerId> | ||
</answers> | ||
</question> | ||
<question> | ||
<questionId>4</questionId> | ||
<answers> | ||
<answerId>5</answerId> | ||
<answerId>8</answerId> | ||
</answers> | ||
</question> | ||
</questions> | ||
</response> | ||
<response> | ||
<surveyId>9</surveyId> | ||
<questions> | ||
<question> | ||
<questionId>2</questionId> | ||
<answers> | ||
<answerId>5</answerId> | ||
<answerId>8</answerId> | ||
</answers> | ||
</question> | ||
<question> | ||
<questionId>4</questionId> | ||
<answers> | ||
<answerId>5</answerId> | ||
<answerId>8</answerId> | ||
</answers> | ||
</question> | ||
</questions> | ||
</response> | ||
</responses> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
package survey.backend.entities; | ||
|
||
/** | ||
* Class QuestionType represents types of question | ||
* @author Peter Petkanic | ||
*/ | ||
public enum QuestionType { | ||
CLOSED, MULTIPLE; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="no"?> | ||
<surveys xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="/src/xml/survey.xsd"> | ||
<survey sid="2"> | ||
<title>Predmetová anketa predmetu PB138</title> | ||
<description>Tento dotazník má dopomôcť k skvaliteniu prednášok a cvičení predmetu PB138.</description> | ||
<questions> | ||
<question qid="1" type="closed"> | ||
<description>Ako hodnotíte prednášky na predmete?</description> | ||
<answers> | ||
<answer aid="1">Veľmi kvalitné</answer> | ||
<answer aid="2">Kvalitné</answer> | ||
<answer aid="3">Vylepšil by som ich</answer> | ||
<answer aid="4">Nekvalitné</answer> | ||
<answer aid="5">Úplne nekvalitné</answer> | ||
</answers> | ||
</question> | ||
<question qid="2" type="closed"> | ||
<description>Ako dlho ste týždenne strávili študovaním predmetu?</description> | ||
<answers> | ||
<answer aid="1">13 a viac hodín</answer> | ||
<answer aid="2">10-12</answer> | ||
<answer aid="3">6-9</answer> | ||
<answer aid="4">2-5</answer> | ||
<answer aid="5">menej ako hodinu alebo vôbec</answer> | ||
</answers> | ||
</question> | ||
</questions> | ||
</survey> | ||
|
||
|
||
|
||
<survey sid="1"> | ||
<title>Ahoj</title> | ||
<description>Tento dotazník je určený pre študentov FI a má dopomôcť k skvalitneniu štúdia.</description> | ||
<questions> | ||
<question qid="1" type="closed"> | ||
<description>Ako ste spokojný so štúdiom na FI?</description> | ||
<answers> | ||
<answer aid="1">Veľmi spokojný</answer> | ||
<answer aid="2">Spokojný</answer> | ||
<answer aid="3">Neutrálny</answer> | ||
<answer aid="4">Nespokojný</answer> | ||
<answer aid="5">Vôbec nespokojný</answer> | ||
</answers> | ||
</question> | ||
<question qid="2" type="multiple"> | ||
<description>Ktoré programovacie jazyky ovladáte?</description> | ||
<answers> | ||
<answer aid="1">C/C++</answer> | ||
<answer aid="2">Java</answer> | ||
<answer aid="3">C#</answer> | ||
<answer aid="4">Ruby</answer> | ||
<answer aid="5">R</answer> | ||
</answers> | ||
</question> | ||
</questions> | ||
</survey> | ||
</surveys> |