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 Errors 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(00000501-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 | 0x00000501, (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 Index |
24 | * <code>IDL: [in] VARIANT</code> |
25 | * @return |
26 | * <code>IDL: [out] [retval] Error**</code> |
27 | */ |
28 | public com.moesol.bindings.platform_sdk.data_services.Error getItem( |
29 | /*[in]*/ Object Index); |
30 | |
31 | /** |
32 | * <code>IDL: [ helpstring("") ]</code> |
33 | * |
34 | */ |
35 | public void Clear(); |
36 | |
37 | |
38 | /** <em>Implementation</em>, <small>Java to COM</small>. */ |
39 | public static class Jni extends com.moesol.bindings.platform_sdk.data_services._Collection.Jni implements Errors { |
40 | |
41 | protected Jni () { |
42 | } |
43 | |
44 | |
45 | private native com.moesol.bindings.platform_sdk.data_services.Error jni_getItem( |
46 | /*[in]*/ Object p0); |
47 | public com.moesol.bindings.platform_sdk.data_services.Error getItem( |
48 | /*[in]*/ Object p0) { |
49 | |
50 | return jni_getItem(p0); |
51 | } |
52 | |
53 | private native void jni_Clear(); |
54 | public void Clear() { |
55 | |
56 | jni_Clear(); |
57 | } |
58 | |
59 | } |
60 | |
61 | /** <em>Implementation</em>, <small>COM to Java</small>. */ |
62 | public static class Disp extends com.moesol.bindings.platform_sdk.data_services._Collection.Disp { |
63 | public static com.moesol.bindings.platform_sdk.component_services.IUnknown.Disp instance() { |
64 | return s_instance; |
65 | } |
66 | |
67 | private static Disp s_instance = new Disp(); |
68 | |
69 | protected Disp() { |
70 | addEntry(0, (short)2, "getItem", "(Ljava/lang/Object;)Lcom/moesol/bindings/platform_sdk/data_services/Error;"); |
71 | addEntry(1610809345, (short)1, "Clear", "()V"); |
72 | } |
73 | } |
74 | } |