This section will discuss a prototype about implementing a plugin to allow the parsing and creation of XML files in NiCE.
Currently, the Model Profile and Simulator Profile will be shared. Here is a sample ps.app file from the previous version of NiCE 1.0
AppName=ps
ComputingPlatform=derp.derp.com
ExecutionString=ps cat ${MIP}
ProblemTypes=Show Running Processes
Show_Running_Processes_Option=All
This is a sample schema created using Eclipse XML Schema creator:
xmlns:tns="http://www.example.org/SimulatorModel" elementFormDefault="qualified">
<complexType name="Model">
<sequence>
<element name="AppName" type="string"></element>
<element name="ComputingPlatform" type="string"></element>
<element name="ExecutionString" type="string"></element>
<element name="ProblemTypes" type="string"></element>
<element name="Show_Running_Processes_Option" type="string"></element>
</sequence>
</complexType>
</schema>
-Under Construction-