Sub Class_Globals
End Sub
'Initializes the object. You can add parameters to this method if needed.
Public Sub Initialize
End Sub
public Sub MyMethod(Param1 As String, Param2 As String)
Dim J As JavaObject = GetBA
'J.InitializeContext
J.RunMethod("NewMethod", Array(Param1,Param2))
End Sub
Private Sub GetBA As Object
Dim jo As JavaObject = Me
Return jo.RunMethod("getBA", Null)
End Sub
#if java
import java.io.*;
//import java.util.*;
public void NewMethod(String p1, String p2) throws IOException {
}
#End if