Re: Errors in TypeBrowser generated code
David Hay <[email protected]>
| Newsgroups | gmane.comp.windows.devel.jawin |
|---|---|
| Message-ID | <LISTSERV%[email protected]> |
Hi Josh, Yep, please consider this me "yelling"!! I would really appreciate help, as I'm a novice with COM. How do I go about figuring out what Java source is required? I have C++ examples of how to call this, and obviously know what the method should do - but not sure how to link the 2 with Jawin. By the way, do you have any comments on my later email about the dll not being installed? After further reading, these methods are the only "exported functions", and are used to create/destroy the Engine - after that methods are just called on this singleton Engine object. Thanks, David On Thu, 3 Feb 2005 09:54:12 +1000, Josh Passenger <[email protected]> wrote: >HI David, > >If you know what Java source is required, you can add a patch to the XSLT >for that type of type element. > >The XSLT files are currently very simplistic in the more obscure areas of MS >COM, and are often just stubbed out. > >If you need some help with the XSLT just yell, as you can imagine, >implementing all of the code transformations up front was just not feasible, >we are relying on contributions from people on a 'need to' basis to fill in >the rest of the transformations. > >Josh > >> >>The output is advanced for IDispatch base interfaces. The coclass stuff >>has not been developed but there are stylesheets that can have >>implementation increased. The marshaling of Jawin is not far enough for >>it though. >> >>David Hay wrote: >> >>>Hi, >>> >>>I have some errors that appear in the code that the TypeBrowser generates >>>- >>>the class is almost blank, and just has the following: >>> >>>public class Globals >>>{ >>>public static final GUID = ""; >>> >>> >>>public void GetEngineObject() >>>{ >>> >>>} >>> >>>public void DeinitializeEngine() >>>{ >>> >>>} >>> >>>} >>> >>>The XML in the TypeBrowser is as follows: >>> >>><module name="Globals" description="xxx" helpFile="xxx" >>>helpReference="400" projectName="XXX" libraryFileName="XXX.tlb" >>>packageName="com.lexmark.olympus.action.ocr.jawin" >>>saveDirectory="c:\dev\olympus\prototype\src" javaEncoding=""> >>><function name="GetEngineObject" description="yyy" >>>helpFile="yyy.chm" helpReference="1100" invokeKind="DISPATCH_METHOD" >>>functionKind="FUNC_STATIC" paramCount="4" optionalParamCount="0" >>>vTableOffset="0"> >>> <return propertyType="25" typeName="int" >>>typeString="VT_HRESULT" typePointer="VT_PHRESULT" javaString="int" >>>javaObjectType="java.lang.Integer" javaSignature="V" >>>javaNativeString="jint" javaNativeArray="jintArray" cppString="DWORD" >>>cppDirect="VTS_HRESULT" cppPointer="VTS_PHRESULT"> >>> <idl flag="null"/> >>> </return> >>> <parameter name="DeveloperSN" type="8" typeName="String" >>>typeString="VT_BSTR" typePointer="VT_PBSTR" javaString="String" >>>javaObjectType="java.lang.String" javaSignature="" >>>javaNativeString="jstring" javaNativeArray="jobjectArray" >>>cppString="CComBSTR" cppDirect="VTS_BSTR" cppPointer="VTS_PBSTR"> >>> </parameter> >>> <parameter name="Reserved1" type="8" typeName="String" >>>typeString="VT_BSTR" typePointer="VT_PBSTR" javaString="String" >>>javaObjectType="java.lang.String" javaSignature="" >>>javaNativeString="jstring" javaNativeArray="jobjectArray" >>>cppString="CComBSTR" cppDirect="VTS_BSTR" cppPointer="VTS_PBSTR"> >>> <modifier flag="NONE"/> >>> <modifier flag="IN"/> >>> <modifier flag="OPT"/> >>> <modifier flag="HAS_DEFAULT"/> >>> <idl flag="null"/> >>> </parameter> >>> <parameter name="Reserved2" type="8" typeName="String" >>>typeString="VT_BSTR" typePointer="VT_PBSTR" javaString="String" >>>javaObjectType="java.lang.String" javaSignature="" >>>javaNativeString="jstring" javaNativeArray="jobjectArray" >>>cppString="CComBSTR" cppDirect="VTS_BSTR" cppPointer="VTS_PBSTR"> >>> <modifier flag="NONE"/> >>> <modifier flag="IN"/> >>> <modifier flag="OPT"/> >>> <modifier flag="HAS_DEFAULT"/> >>> <idl flag="null"/> >>> </parameter> >>> <parameter name="Engine" type="26" typeString="VT_PTR" >>>typePointer="VT_PPTR" javaString="void" javaObjectType="java.lang.Object" >>>javaSignature="V" javaNativeString="jobject" >>>javaNativeArray="jobjectArray" cppString="void*" cppDirect="VTS_PTR" >>>cppPointer="VTS_PPTR"> >>> <pointer type="26" typeString="VT_PTR" >>>typePointer="VT_PPTR" javaString="void" javaObjectType="java.lang.Object" >>>javaSignature="V" javaNativeString="jobject" >>>javaNativeArray="jobjectArray" cppString="void*" cppDirect="VTS_PTR" >>>cppPointer="VTS_PPTR"> >>> <pointer type="26" >>>typeString="VT_USERDEFINED" typePointer="VT_PVARIANT" javaString="Object" >>>javaObjectType="java.lang.Object" javaSignature="" >>>javaNativeString="jobject" javaNativeArray="jobjectArray" >>>cppString="COleVariant" cppDirect="VTS_VARIANT" cppPointer="VTS_PVARIANT"> >>> </pointer> >>> </pointer> >>> <modifier flag="NONE"/> >>> <modifier flag="OUT"/> >>> <modifier flag="RETVAL"/> >>> <idl flag="null"/> >>> </parameter> >>></function> >>><function name="DeinitializeEngine" description="zzz" >>>helpFile="zzz.chm" helpReference="1101" invokeKind="DISPATCH_METHOD" >>>functionKind="FUNC_STATIC" paramCount="0" optionalParamCount="0" >>>vTableOffset="0"> >>> <return propertyType="25" typeName="int" >>>typeString="VT_HRESULT" typePointer="VT_PHRESULT" javaString="int" >>>javaObjectType="java.lang.Integer" javaSignature="V" >>>javaNativeString="jint" javaNativeArray="jintArray" cppString="DWORD" >>>cppDirect="VTS_HRESULT" cppPointer="VTS_PHRESULT"> >>> <idl flag="NONE"/> >>> </return> >>></function> >>></module> >>> >>>Does anyone know what the problem is, and if there is a workaround? >>> >>>many thanks, >>> >>>David >>> >>> >>>