Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit e47c108

Browse files
author
Eduardo Fullea
committed
Merge pull request #34 from efullea/filters
Making MessagingFilter a dictionary and commenting out abstract filters. Closes #26
2 parents 1d3fed1 + 3626ce1 commit e47c108

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

index.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1734,54 +1734,54 @@ <h2><a>ServiceChangeEvent</a> Interface</h2>
17341734
</section>
17351735

17361736

1737-
<!------------------------ Interface MessagingFilter ------------------------->
1737+
<!------------------------ Dictionary MessagingFilter ------------------------>
17381738
<section>
1739-
<h2><a>MessagingFilter</a> Interface</h2>
1740-
<p>The <a>MessagingFilter</a> interface represents a filter that is used to
1739+
<h2><a>MessagingFilter</a> Dictionary</h2>
1740+
<p>The <a>MessagingFilter</a> Dictionary represents a filter that is used to
17411741
select a set of messages (e.g. to be provided upon invoking the
17421742
<code>findMessages</code> or the <code>findConversations</code> method in the
17431743
<code>Messaging</code> interface).
1744-
<dl title="interface MessagingFilter : AbstractFilter"
1744+
<dl title="dictionary MessagingFilter"
17451745
class="idl">
1746-
<dt>attribute MessageType? type</dt>
1746+
<dt>MessageType type</dt>
17471747
<dd>Indicates whether just the SMS or MMS messages are to be provided in the
17481748
results of this filter, respectively if it is set to string value 'SMS' or
17491749
'MMS'.
17501750
</dd>
17511751

1752-
<dt>attribute Date? startDate</dt>
1752+
<dt>Date startDate</dt>
17531753
<dd>Indicates that messages with timestamp previous to this date will not be
17541754
provided in the results of this filter.</dd>
17551755

1756-
<dt>attribute Date? endDate</dt>
1756+
<dt>Date endDate</dt>
17571757
<dd>Indicates that messages with timestamp after this date will not be
17581758
provided in the results of this filter.</dd>
17591759

1760-
<dt>attribute DOMString? from</dt>
1760+
<dt>DOMString from</dt>
17611761
<dd>Indicates that just messages sent from this number are to be provided in
17621762
the results of this filter.</dd>
17631763

1764-
<dt>attribute DOMString[]? recipients</dt>
1764+
<dt>sequence&lt;DOMString&gt; recipients</dt>
17651765
<dd>Indicates that just messages sent to one of these numbers are to be
17661766
provided in the results of this filter.</dd>
17671767

1768-
<dt>attribute (SmsState or MmsState)? state</dt>
1768+
<dt>(SmsState or MmsState) state</dt>
17691769
<dd>Indicates whether the results of this filter just needs to return the
17701770
messages matching the indicated state.
17711771

1772-
<dt>attribute DOMString? serviceID</dt>
1772+
<dt>DOMString serviceID</dt>
17731773
<dd>Indicates that just messages associated to the messaging service with
17741774
this identifier are to be provided in the results of this filter.</dd>
17751775

1776-
<dt>attribute boolean? read</dt>
1776+
<dt>boolean read</dt>
17771777
<dd>Indicates whether just read or unread messages are to be provided in the
17781778
results of this filter, respectively if it is set to 'true' or 'false'.</dd>
17791779

17801780
</dl>
17811781
</section>
17821782

17831783
<!------------------------ Dictionary FilterOptions -------------------------->
1784-
<section>
1784+
<!--section>
17851785
<h2><a>FilterOptions</a> Dictionary</h2>
17861786
<dl title="dictionary FilterOptions" class="idl">
17871787
<dt>DOMString sortBy</dt>
@@ -1808,7 +1808,7 @@ <h2><a>FilterOptions</a> Dictionary</h2>
18081808
</p>
18091809
18101810
<!------------------------ Interface CompositeFilter ------------------------->
1811-
<section>
1811+
<!--section>
18121812
<h2><a>CompositeFilter</a> Interface</h2>
18131813
<p>The <a>CompositeFilter</a> interface represents a filter that is the result
18141814
of combining several filters with an operator ('and' / 'or').
@@ -1826,7 +1826,7 @@ <h2><a>CompositeFilter</a> Interface</h2>
18261826
18271827
18281828
<!------------------------ Interface AttributeFilter-------------------------->
1829-
<section>
1829+
<!--section>
18301830
<h2><a>AttributeFilter</a> Interface</h2>
18311831
<p>The <a>AttributeFilter</a> interface represents a filter of messages
18321832
based on the value of a specific attribute.
@@ -1849,7 +1849,7 @@ <h2><a>AttributeFilter</a> Interface</h2>
18491849
18501850
18511851
<!------------------------ Interface AttributeRangeFilter -------------------->
1852-
<section>
1852+
<!--section>
18531853
<h2><a>AttributeRangeFilter</a> Interface</h2>
18541854
<p>The <a>AttributeRangeFilter</a> interface represents a filter of messages
18551855
with the value of a specific attribute within a range of values.

0 commit comments

Comments
 (0)