| Package | Description |
|---|---|
| com.iscobol.java |
The public interface of the isCOBOL Runtime System.
|
| Modifier and Type | Method and Description |
|---|---|
static int |
IsCobol.call(String name,
Object[] argv)
Enables Java programs to call COBOL programs.
|
static int |
IsCobol.call(String name,
Object[] argv,
boolean stopOnError)
Enables Java programs to call COBOL programs.
|
static int |
IsCobol.call(String name,
Object[] argv,
boolean stopOnError,
Object[] retVal)
Enables Java programs to call COBOL programs.
|
static int |
IsCobol.call(String name,
String[] strArgv)
Enables Java programs to call COBOL programs.
|
static int |
IsCobol.call(String name,
String[] strArgv,
Object[] retVal)
Enables Java programs to call COBOL programs.
|
static int |
IsCobol.callNoStop(String name,
Object[] argv)
Enables Java programs to call COBOL programs.
|
static int |
IsCobol.callNoStop(String name,
Object[] argv,
Object[] retVal)
Enables Java programs to call COBOL programs.
|
static void |
IsCobol.cancel(String name)
Cancels the COBOL program name previously called.
|
static void |
IsCobol.cancelAll()
Cancels all the COBOL programs previously called.
|
static void |
IsCobol.tidy()
Shutdown the isCOBOL environment.This method should be invoked before the
end of each thread.
|