Class Test64

java.lang.Object
  extended by java.lang.Thread
      extended by TestSkeleton
          extended by Test64
All Implemented Interfaces:
java.lang.Runnable, RemoteSourceListener, CmdlineConsumer

public class Test64
extends TestSkeleton


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
Test64()
           
Test64(java.lang.String[] args)
           
 
Method Summary
 int checkKeyword(java.lang.String testName, int argc, java.lang.String[] args)
          Handle subclass-specific command line options and their arguments.
 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
checkOption, collabSourceLost, dataSourceLost, finalizeArgs, keywordUsage, optionUsage, startThreads
 
Methods inherited from class java.lang.Thread
activeCount, checkAccess, 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Test64

public Test64()

Test64

public Test64(java.lang.String[] args)
       throws java.rmi.RemoteException,
              VisADException
Throws:
java.rmi.RemoteException
VisADException
Method Detail

initializeArgs

public void initializeArgs()
Description copied from interface: CmdlineConsumer
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. If the first line in the constructor in a class which extends this class is super(args), CmdlineParser will be run before any instance variables for the extending class are initialized.

To ensure all instance variables are properly initialized, place the initialization code in the initializeArgs() method.

Specified by:
initializeArgs in interface CmdlineConsumer
Overrides:
initializeArgs in class TestSkeleton

checkKeyword

public int checkKeyword(java.lang.String testName,
                        int argc,
                        java.lang.String[] args)
Description copied from interface: CmdlineConsumer
Handle subclass-specific command line options and their arguments.

Specified by:
checkKeyword in interface CmdlineConsumer
Overrides:
checkKeyword in class TestSkeleton
Parameters:
testName - The name of the main class (useful for error messages.)
argc - The index of the current keyword.
args - The full list of arguments.
Returns:
less than 0 to indicate an error
0 to indicate that this argument is not used by this class
1 or more to indicate the number of arguments used

toString

public java.lang.String toString()
Overrides:
toString in class TestSkeleton

main

public static void main(java.lang.String[] args)
                 throws java.rmi.RemoteException,
                        VisADException
Throws:
java.rmi.RemoteException
VisADException