source: trunk/examples/objects/xmlparser/tool.xml @ 1528

Last change on this file since 1528 was 1528, checked in by dkearney, 15 years ago

updating the objects code and adding some more examples describing how i want developers to use the objects. some of the objects don't work yet, like the tree, anything with an example should work

File size: 1.4 KB
Line 
1<?xml version="1.0"?>
2<run>
3    <tool>
4        <about>Press Simulate to view results.</about>
5        <command>@tool/fermi @driver</command>
6    </tool>
7    <input>
8        <number id="temperature">
9            <about>
10                <label>Ambient temperature</label>
11                <description>Temperature of the environment.</description>
12            </about>
13            <units>K</units>
14            <min>0K</min>
15            <max>500K</max>
16            <default>300K</default>
17            <preset>
18                <value>300K</value>
19                <label>300K (room temperature)</label>
20            </preset>
21            <preset>
22                <value>77K</value>
23                <label>77K (liquid nitrogen)</label>
24            </preset>
25            <preset>
26                <value>4.2K</value>
27                <label>4.2K (liquid helium)</label>
28            </preset>
29        </number>
30        <string>
31            <about>
32                <label>Mystring</label>
33                <description>blahblah</description>
34            </about>
35            <default>the default value</default>
36        </string>
37        <number id="Ef">
38            <about>
39                <label>Fermi Level</label>
40                <description>Energy at center of distribution.</description>
41            </about>
42            <units>eV</units>
43            <min>-10eV</min>
44            <max>10eV</max>
45            <default>0eV</default>
46        </number>
47    </input>
48</run>
49
Note: See TracBrowser for help on using the repository browser.