Let’s have a look at the XML structure of the “example.xml” document below.
<?xml version=”1.0” encoding=”UTF-8” ?> <metadataset> <!-- rst class-type = Selection --> <control> <!-- this de nition will be used as variable (%quality) in the export xml --> <name>quality</name> <!-- this label is displayed in the Just In Multi GUI --> <label>Quality</label> <!-- this pull-down menu will be shown in the Just In Multi GUI --> <type class=”Selection” default=”2”> <item>Low</item> <item>Medium</item> <item>High</item> </type> </control> <!-- second class-type = Text --> <control> <name>customText</name> <label>Custom Text</label> <type class=”Text” default=”Insert your text here”></type> </control> <!-- third class-type = Checkbox --> <control> <name>special</name> <label>Special</label> <type class=”Checkbox” default=”0”></type> </control> </metadataset>