|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Thread
TestSkeleton
UISkeleton
Test63
public class Test63
Nested Class Summary |
---|
Nested classes/interfaces inherited from class java.lang.Thread |
---|
java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler |
Field Summary |
---|
Fields inherited from class java.lang.Thread |
---|
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY |
Constructor Summary | |
---|---|
Test63()
|
|
Test63(java.lang.String[] args)
|
Method Summary | |
---|---|
int |
checkOption(java.lang.String progName,
char ch,
java.lang.String arg)
Handle subclass-specific command line options and their arguments. If -abc -d efg -h -1 -i is specified, this method will be called a maximum of 5 times: checkOption(mainName, 'a', "bc"); checkOption(mainName, 'd', "efg"); checkOption(mainName, 'h', "-1"); checkOption(mainName, '1', "-i"); checkOption(mainName, 'i', null); Note that either of the last two method calls may not happen if the preceeding method call claims to have used the following argument (by returning 2. For example, if the third call (where ch is set to 'h') returns 0 or 1, the next call will contain '1' and "-i". |
void |
initializeArgs()
Method used to initialize any instance variables which may be changed by a cmdline option. This is needed when arguments are processed inside the constructor. |
static void |
main(java.lang.String[] args)
|
java.lang.String |
toString()
|
Methods inherited from class TestSkeleton |
---|
checkKeyword, collabSourceLost, dataSourceLost, finalizeArgs, keywordUsage, optionUsage, startThreads |
Methods inherited from class java.lang.Thread |
---|
activeCount, checkAccess, clone, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, run, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, yield |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Test63()
public Test63(java.lang.String[] args) throws java.rmi.RemoteException, VisADException
java.rmi.RemoteException
VisADException
Method Detail |
---|
public void initializeArgs()
CmdlineConsumer
CmdlineParser
will be run
before any instance variables for the extending
class are initialized.
initializeArgs
in interface CmdlineConsumer
initializeArgs
in class TestSkeleton
public int checkOption(java.lang.String progName, char ch, java.lang.String arg)
CmdlineConsumer
checkOption
in interface CmdlineConsumer
checkOption
in class TestSkeleton
progName
- The name of the main class (useful for
error messages.)ch
- Option character. If -a is specified
on the command line, 'a' would be passed to
this method.)arg
- The argument associated with this option.
public java.lang.String toString()
toString
in class TestSkeleton
public static void main(java.lang.String[] args) throws java.rmi.RemoteException, VisADException
java.rmi.RemoteException
VisADException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |