Skip to content

Commit

Permalink
minor tweaks to the types
Browse files Browse the repository at this point in the history
  • Loading branch information
tripzero committed Jan 24, 2014
1 parent 8c2bdd1 commit f7c1e5e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions vehicle_spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,14 @@ <h2><a>Zone</a> Interface</h2> <p>The <a>Zone</a>
<dt>const DOMString Rear = "Rear"</dt>
<dt>const DOMString Center = "Center"</dt>

<dt>attribute DOMString value[]</dt<dd>Must return array of physical zones</dd>
<dt>readonly attribute DOMString driver[]</dt><dd>Must return physical zone array for logical driver</dd>
<dt>readonly attribute DOMString passenger[]</dt><dd>Must return physical zone array for logical passenger</dd>
<dt>attribute unsigned DOMString value[]</dt<dd>Must return array of physical zones</dd>
<dt>readonly attribute Zone driver</dt><dd>Must return physical zone array for logical driver</dd>
<dt>readonly attribute Zone passenger[]</dt><dd>Must return physical zone array for logical passenger</dd>

<dt>boolean equals(DOMString values[])</dt><dd>Must return true if values[] matches the contents of Zone.value.
Ordering of elements within the arrays values and Zone.value do not matter.</dd>
<dt>boolean equals(Zone zone)</dt><dd>Must return true if zone.value matches the contents of this.value.
Ordering of elements within Zone.value does not matter.</dd>

<dt>boolean contains(DOMString value)</dt><dd>Must return true if value can be found within Zone.value</dd>
<dt>boolean contains(Zone zone)</dt><dd>Must return true if zone.value can be found within this.value</dd>

</dl>
</section>
Expand Down Expand Up @@ -221,7 +221,7 @@ <h2><a>VehicleCommonDataType</a> Interface</h2> <p>The <a>VehicleCommonDataType<

<dl title="[NoInterfaceObject] interface VehicleCommonDataType"
class="idl">
<dt>readonly attribute Zone zone[]</dt><dd>must return zone for this data type or null if there is no zone associated with this data type</dd>
<dt>readonly attribute Zone zone</dt><dd>must return zone for this data type or null if there is no zone associated with this data type</dd>
<dt>readonly attribute DOMTimeStamp timeStamp</dt><dd>must return timestamp when this data was received on the system</dd>
</dl>
</section>
Expand Down

0 comments on commit f7c1e5e

Please sign in to comment.