http://dbai.tuwien.ac.at/proj/arte/GES
element EmployeeList

Documentation

Employees can either be individuals of a fixed number (Employee) or generic types in a variable number, as determined by the solver (VariableEmployee). A combination of both types is also possible.

Properties
This component is not nillable.

Model
<EmployeeList>
(Employee | VariableEmployee)+
</EmployeeList>


Nested Element Summary
 Employee
          An individual employee in the roster.  
 VariableEmployee
          A homogeneous pool of employees that can be hired if necessary. 
Source
<xs:element name="EmployeeList">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="Employee">
<xs:complexType>
<xs:complexContent>
<xs:extension base="AbstractEmployeeType">
<xs:sequence>
<xs:element minOccurs="0" name="Name" type="xs:token">
</xs:element>
</xs:sequence>
<xs:attribute name="ID" type="ID" use="required">
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="VariableEmployee">
<xs:complexType>
<xs:complexContent>
<xs:extension base="AbstractEmployeeType">
<xs:sequence>
<xs:element minOccurs="0" name="Cost" type="nonNegativeDouble">
</xs:element>
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:element name="MinNumber" type="WeightedInteger">
</xs:element>
<xs:element name="MaxNumber" type="WeightedInteger">
</xs:element>
<xs:element name="MinFraction" type="WeightedDouble">
</xs:element>
<xs:element name="MaxFraction" type="WeightedDouble">
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attribute name="ID" type="ID" use="required">
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>


Submit a bug or a feature.
Created by xsddoc, a sub project of xframe, hosted at http://xframe.sourceforge.net.