1 | // tlb2java |
2 | package com.moesol.bindings.platform_sdk.data_services; |
3 | |
4 | |
5 | /** |
6 | * <code>IDL: [ helpstring(""), dual, nonextensible, oleautomation, dispatchable ] interface</code> |
7 | */ |
8 | public interface _DynaCollection extends com.moesol.bindings.platform_sdk.data_services._Collection { |
9 | public static final Class TYPELIB = TYPELIB_2A75196C_D9EB_4129_B803_931327F72D5C.class; |
10 | /** |
11 | * <code>IDL: [uuid(00000513-0000-0010-8000-00AA006D2EA4)]</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 | 0x00000513, (short)0x0000, (short)0x0010, |
15 | new byte[] { |
16 | (byte)0x80, (byte)0x00, |
17 | (byte)0x00, (byte)0xaa, (byte)0x00, (byte)0x6d, (byte)0x2e, (byte)0xa4 |
18 | } ); |
19 | |
20 | /** |
21 | * <code>IDL: [ helpstring("") ]</code> |
22 | * |
23 | * @param Object |
24 | * <code>IDL: [in] IDispatch*</code> |
25 | */ |
26 | public void Append( |
27 | /*[in]*/ com.moesol.bindings.platform_sdk.component_services.IDispatch Object); |
28 | |
29 | /** |
30 | * <code>IDL: [ helpstring("") ]</code> |
31 | * |
32 | * @param Index |
33 | * <code>IDL: [in] VARIANT</code> |
34 | */ |
35 | public void Delete( |
36 | /*[in]*/ Object Index); |
37 | |
38 | |
39 | /** <em>Implementation</em>, <small>Java to COM</small>. */ |
40 | public static class Jni extends com.moesol.bindings.platform_sdk.data_services._Collection.Jni implements _DynaCollection { |
41 | |
42 | protected Jni () { |
43 | } |
44 | |
45 | |
46 | private native void jni_Append( |
47 | /*[in]*/ com.moesol.bindings.platform_sdk.component_services.IDispatch p0); |
48 | public void Append( |
49 | /*[in]*/ com.moesol.bindings.platform_sdk.component_services.IDispatch p0) { |
50 | |
51 | jni_Append(p0); |
52 | } |
53 | |
54 | private native void jni_Delete( |
55 | /*[in]*/ Object p0); |
56 | public void Delete( |
57 | /*[in]*/ Object p0) { |
58 | |
59 | jni_Delete(p0); |
60 | } |
61 | |
62 | } |
63 | |
64 | /** <em>Implementation</em>, <small>COM to Java</small>. */ |
65 | public static class Disp extends com.moesol.bindings.platform_sdk.data_services._Collection.Disp { |
66 | public static com.moesol.bindings.platform_sdk.component_services.IUnknown.Disp instance() { |
67 | return s_instance; |
68 | } |
69 | |
70 | private static Disp s_instance = new Disp(); |
71 | |
72 | protected Disp() { |
73 | addEntry(1610809344, (short)1, "Append", "(Lcom/moesol/bindings/platform_sdk/component_services/IDispatch;)V"); |
74 | addEntry(1610809345, (short)1, "Delete", "(Ljava/lang/Object;)V"); |
75 | } |
76 | } |
77 | } |