 | SetupJVMWrapperImportPackage Method |
Use the method available in JVM property
Imports a Java package to be used within the program
Namespace: MASES.JCOBridge.C2JBridgeAssembly: C2JBridge (in C2JBridge.dll) Version: 2.6.4.250922-152ba6ff9edce5bce8e7bf5a86e1098f7e200363
Syntax[ObsoleteAttribute("Use the method available in JVM property", true)]
public void ImportPackage(
string packageName
)
<ObsoleteAttribute("Use the method available in JVM property", true)>
Public Sub ImportPackage (
packageName As String
)
Parameters
- packageName String
- The package in the form of java.lang, java.util, etc.
Example
To add package search use a code like:
ImportPackage("java.lang");
See Also