- Survey Definition
-
1:<?xml version="1.0"?>
2:
3:<SimpleContainer id="Example_Survey"
4: xmlns="http://jcaif.sourceforge.net"
5: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6: xsi:schemaLocation="http://jcaif.sourceforge.net jcaif.xsd">
7: <text>Sonar Test</text>
8:
9: <SingleSelectQuestion id="question1">
10: <text>What do you think about Sonar CAPI?</text>
11: <SimpleResponseList>
12: <TextListItem value="5">Like it very much</TextListItem>
13: <TextListItem value="4">Like it</TextListItem>
14: <TextListItem value="3">Like it somewhat</TextListItem>
15: <TextListItem value="2">Dislike it</TextListItem>
16: <TextListItem value="1">Dislike it very much</TextListItem>
17: </SimpleResponseList>
18: </SingleSelectQuestion>
19:</SimpleContainer>
20:
- Data File
-
1:<SurveyData>
2: <ComponentContainer id="Example_Survey">
3: <SurveyQuestion id="question1" value="5" />
4: </ComponentContainer>
5:</SurveyData>
|