KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > ISpeechGrammarRules


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 /**
7  * ISpeechGrammarRules Interface
8  */

9 @IID("{6FFA3B44-FC2D-40D1-8AFC-32911C7F1AD1}")
10 public interface ISpeechGrammarRules extends Com4jObject,Iterable JavaDoc<Com4jObject> {
11     /**
12      * Count
13      */

14     @VTID(7)
15     int count();
16
17     /**
18      * FindRule
19      */

20     @VTID(8)
21     ISpeechGrammarRule findRule(
22         java.lang.Object JavaDoc ruleNameOrId);
23
24     /**
25      * Item
26      */

27     @VTID(9)
28     ISpeechGrammarRule item(
29         int index);
30
31     /**
32      * Enumerates the alternates
33      */

34     @VTID(10)
35     java.util.Iterator JavaDoc<Com4jObject> iterator();
36
37     /**
38      * Dynamic
39      */

40     @VTID(11)
41     boolean dynamic();
42
43     /**
44      * Add
45      */

46     @VTID(12)
47     ISpeechGrammarRule add(
48         java.lang.String JavaDoc ruleName,
49         SpeechRuleAttributes attributes,
50         int ruleId);
51
52     /**
53      * Commit
54      */

55     @VTID(13)
56     void commit();
57
58     /**
59      * CommitAndSave
60      */

61     @VTID(14)
62     java.lang.Object JavaDoc commitAndSave(
63         Holder<java.lang.String JavaDoc> errorText);
64
65 }
66
Popular Tags