5.1.1.4. Output

<output/> is a sub element of <personel-iom-project>.

This element marks the location of the project’s output folder. It distinguishes three file types for which a location can be given:

  • java

  • xml

  • file (any file type other than java and xml)

Listing 5.5 <output> in project file
 1<personal-iom-project>
 2  ...
 3
 4        <output>
 5                <path type="java">../quickstart</path>
 6                <path type="xml">../quickstart</path>
 7                <path type="file">../quickstart</path>
 8        </output>
 9  ...
10</personel-iom-project>

Attributes

There are no attributes for <output/>.

Sub elements

Table 5.3 <output/> sub elements

Name

Details

Number

path

Marks the location of the output folder for each defined type of file. A maximum of three of these sub elements is allowed. However at least one with “type=(java|xml|file)” is mandatory.

1-3