Package weka.gui
Class SimpleCLIPanel.ClassRunner
- java.lang.Object
-
- java.lang.Thread
-
- weka.gui.SimpleCLIPanel.ClassRunner
-
- All Implemented Interfaces:
java.lang.Runnable
- Enclosing class:
- SimpleCLIPanel
public static class SimpleCLIPanel.ClassRunner extends java.lang.ThreadA class that handles running the main method of the class in a separate thread.- Version:
- $Revision: 14983 $
- Author:
- Len Trigg (trigg@cs.waikato.ac.nz)
-
-
Constructor Summary
Constructors Constructor Description ClassRunner(SimpleCLIPanel owner, java.lang.Class<?> theClass, java.lang.String[] commandArgs)Sets up the class runner thread.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrun()Starts running the main method.-
Methods inherited from class java.lang.Thread
activeCount, checkAccess, countStackFrames, currentThread, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, onSpinWait, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, suspend, toString, yield
-
-
-
-
Constructor Detail
-
ClassRunner
public ClassRunner(SimpleCLIPanel owner, java.lang.Class<?> theClass, java.lang.String[] commandArgs) throws java.lang.Exception
Sets up the class runner thread.- Parameters:
theClass- the Class to call the main method ofcommandArgs- an array of Strings to use as command line args- Throws:
java.lang.Exception- if an error occurs
-
-