| 1 | // tlb2java |
| 2 | package com.moesol.bindings.platform_sdk.data_services; |
| 3 | |
| 4 | |
| 5 | /** |
| 6 | * <code>IDL: [ helpstring("IJetEngine Interface"), dual, oleautomation, dispatchable ] interface</code> |
| 7 | */ |
| 8 | public interface IJetEngine 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(9F63D980-FF25-11D1-BB6F-00C04FAE22DA)]</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 | 0x9f63d980, (short)0xff25, (short)0x11d1, |
| 15 | new byte[] { |
| 16 | (byte)0xbb, (byte)0x6f, |
| 17 | (byte)0x00, (byte)0xc0, (byte)0x4f, (byte)0xae, (byte)0x22, (byte)0xda |
| 18 | } ); |
| 19 | |
| 20 | /** |
| 21 | * <code>IDL: [ helpstring("") ]</code> |
| 22 | * |
| 23 | * @param SourceConnection |
| 24 | * <code>IDL: [in] BSTR</code> |
| 25 | * @param Destconnection |
| 26 | * <code>IDL: [in] BSTR</code> |
| 27 | */ |
| 28 | public void CompactDatabase( |
| 29 | /*[in]*/ String SourceConnection, |
| 30 | /*[in]*/ String Destconnection); |
| 31 | |
| 32 | /** |
| 33 | * <code>IDL: [ helpstring("") ]</code> |
| 34 | * |
| 35 | * @param Connection |
| 36 | * <code>IDL: [in] _Connection*</code> |
| 37 | */ |
| 38 | public void RefreshCache( |
| 39 | /*[in]*/ com.moesol.bindings.platform_sdk.data_services._Connection Connection); |
| 40 | |
| 41 | |
| 42 | /** <em>Implementation</em>, <small>Java to COM</small>. */ |
| 43 | public static class Jni extends com.moesol.bindings.platform_sdk.component_services.IDispatch.Jni implements IJetEngine { |
| 44 | |
| 45 | protected Jni () { |
| 46 | } |
| 47 | |
| 48 | |
| 49 | private native void jni_CompactDatabase( |
| 50 | /*[in]*/ String p0, |
| 51 | /*[in]*/ String p1); |
| 52 | public void CompactDatabase( |
| 53 | /*[in]*/ String p0, |
| 54 | /*[in]*/ String p1) { |
| 55 | |
| 56 | jni_CompactDatabase(p0, p1); |
| 57 | } |
| 58 | |
| 59 | private native void jni_RefreshCache( |
| 60 | /*[in]*/ com.moesol.bindings.platform_sdk.data_services._Connection p0); |
| 61 | public void RefreshCache( |
| 62 | /*[in]*/ com.moesol.bindings.platform_sdk.data_services._Connection p0) { |
| 63 | |
| 64 | jni_RefreshCache(p0); |
| 65 | } |
| 66 | |
| 67 | } |
| 68 | |
| 69 | /** <em>Implementation</em>, <small>COM to Java</small>. */ |
| 70 | public static class Disp extends com.moesol.bindings.platform_sdk.component_services.IDispatch.Disp { |
| 71 | public static com.moesol.bindings.platform_sdk.component_services.IUnknown.Disp instance() { |
| 72 | return s_instance; |
| 73 | } |
| 74 | |
| 75 | private static Disp s_instance = new Disp(); |
| 76 | |
| 77 | protected Disp() { |
| 78 | addEntry(1610743808, (short)1, "CompactDatabase", "(Ljava/lang/String;Ljava/lang/String;)V"); |
| 79 | addEntry(1610743809, (short)1, "RefreshCache", "(Lcom/moesol/bindings/platform_sdk/data_services/_Connection;)V"); |
| 80 | } |
| 81 | } |
| 82 | } |