I have a class that just has some methods and no intialization is needed. So instead of dimming that object when I want to call a method can we do something so that this class appears as a code module in B4J ?
B4X:
'how i do it now:
dim MyClass as MyWrappedClassShortName
MyClass.SomeMethod()
B4X:
'could we do it:
MyWrappedClassShortName.SomeMethod()
Java libraries are implemented with classes only. You can compile a B4J library with a code module and see the code and the generated XML and then manually edit the XML. I don't think that it is worth the efforts.