Well I am having a "class" but in class I am having a custom "Type"...
1) I ve noticed if having the Type inside the class not working properly... if have it in "Main" works perfect... but in main not finding the time of compiling (so ?)
Sub Class_Globals
Private fx As JFX
Type MyType(TIME1 As Long, aa As String)
....
public sub mytest
Dim mr As MyType
mr.Initialize
...
mr = raf.ReadB4XObject(raf.CurrentPosition)
2) Another thing... using some inline java ---> targeting at the "Me" - but hey! the jar i am trying to compile not a b4xpage.... so is the following going to work right ?
NatMe = theMe 'theMe is an object... when call it from any app will be a b4xpage... like Me
NatMe.InitializeNewInstance("b4j.example.mynameofmylib.myjavaclass", Array(Null))
NatMe = NatMe.RunMethod("onevoidsub"...
So I am stuck at (1)... Type not works as i want at my jar lib - any idea ?