1 | // tlb2java |
2 | package com.moesol.bindings.platform_sdk.data_services; |
3 | |
4 | |
5 | /** |
6 | * <code>IDL: [ helpstring("Filter Interface"), dual, oleautomation, dispatchable ] interface</code> |
7 | */ |
8 | public interface Filter extends com.moesol.bindings.platform_sdk.component_services.IDispatch { |
9 | public static final Class TYPELIB = TYPELIB_AC3B8B4C_B6CA_11D1_9F31_00C04FC29D52.class; |
10 | /** |
11 | * <code>IDL: [uuid(D2D139E1-B6CA-11D1-9F31-00C04FC29D52)]</code> |
12 | */ |
13 | public static final com.moesol.bindings.platform_sdk.component_services.GUID IID = new com.moesol.bindings.platform_sdk.component_services.GUID( |
14 | 0xd2d139e1, (short)0xb6ca, (short)0x11d1, |
15 | new byte[] { |
16 | (byte)0x9f, (byte)0x31, |
17 | (byte)0x00, (byte)0xc0, (byte)0x4f, (byte)0xc2, (byte)0x9d, (byte)0x52 |
18 | } ); |
19 | |
20 | /** |
21 | * <code>IDL: [ helpstring("") ]</code> |
22 | * |
23 | * @return |
24 | * <code>IDL: [out] [retval] BSTR*</code> |
25 | */ |
26 | public String getTableName(); |
27 | |
28 | /** |
29 | * <code>IDL: [ helpstring("") ]</code> |
30 | * |
31 | * @return |
32 | * <code>IDL: [out] [retval] FilterTypeEnum*</code> |
33 | */ |
34 | public int getFilterType(); |
35 | |
36 | /** |
37 | * <code>IDL: [ helpstring("") ]</code> |
38 | * |
39 | * @return |
40 | * <code>IDL: [out] [retval] BSTR*</code> |
41 | */ |
42 | public String getFilterCriteria(); |
43 | |
44 | |
45 | /** <em>Implementation</em>, <small>Java to COM</small>. */ |
46 | public static class Jni extends com.moesol.bindings.platform_sdk.component_services.IDispatch.Jni implements Filter { |
47 | |
48 | protected Jni () { |
49 | } |
50 | |
51 | |
52 | private native String jni_getTableName(); |
53 | public String getTableName() { |
54 | |
55 | return jni_getTableName(); |
56 | } |
57 | |
58 | private native int jni_getFilterType(); |
59 | public int getFilterType() { |
60 | |
61 | return jni_getFilterType(); |
62 | } |
63 | |
64 | private native String jni_getFilterCriteria(); |
65 | public String getFilterCriteria() { |
66 | |
67 | return jni_getFilterCriteria(); |
68 | } |
69 | |
70 | } |
71 | |
72 | /** <em>Implementation</em>, <small>COM to Java</small>. */ |
73 | public static class Disp extends com.moesol.bindings.platform_sdk.component_services.IDispatch.Disp { |
74 | public static com.moesol.bindings.platform_sdk.component_services.IUnknown.Disp instance() { |
75 | return s_instance; |
76 | } |
77 | |
78 | private static Disp s_instance = new Disp(); |
79 | |
80 | protected Disp() { |
81 | addEntry(1610743808, (short)2, "getTableName", "()Ljava/lang/String;"); |
82 | addEntry(1610743809, (short)2, "getFilterType", "()I"); |
83 | addEntry(1610743810, (short)2, "getFilterCriteria", "()Ljava/lang/String;"); |
84 | } |
85 | } |
86 | } |