KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > ISpeechObjectTokenCategory


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

9 @IID("{CA7EAC50-2D01-4145-86D4-5AE7D70F4469}")
10 public interface ISpeechObjectTokenCategory extends Com4jObject {
11     /**
12      * Id
13      */

14     @VTID(7)
15     java.lang.String JavaDoc id();
16
17     /**
18      * Default
19      */

20     @VTID(8)
21     void _default(
22         java.lang.String JavaDoc tokenId);
23
24     /**
25      * Default
26      */

27     @VTID(9)
28     java.lang.String JavaDoc _default();
29
30     /**
31      * SetId
32      */

33     @VTID(10)
34     void setId(
35         java.lang.String JavaDoc id,
36         boolean createIfNotExist);
37
38     /**
39      * GetDataKey
40      */

41     @VTID(11)
42     ISpeechDataKey getDataKey(
43         SpeechDataKeyLocation location);
44
45     /**
46      * EnumerateTokens
47      */

48     @VTID(12)
49     ISpeechObjectTokens enumerateTokens(
50         java.lang.String JavaDoc requiredAttributes,
51         java.lang.String JavaDoc optionalAttributes);
52
53 }
54
Popular Tags