Main Page   Packages   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Search  

C:/temp/src/j2k/Deprecated/Lang/bak/E5.H File Reference

Go to the source code of this file.

Defines

#define __J2K__LoThrowType   ( 0xFF00 )
#define __J2K__HiThrowType   ( 0x00FF )
#define __J2K__Throwable   ( 0x0100 )
#define __J2K__Error   ( 0x0200 | __J2K__Throwable )
#define __J2K__LinkageError   ( 0x0400 | __J2K__Error )
#define __J2K__Exception   ( 0x0800 | __J2K__Throwable )
#define __J2K__IncompatibleClassChangeError   ( 0x0F00 | __J2K__LinkageError )
#define __J2K__VirtualMachineError   ( 0x1000 | __J2K__Error )
#define __J2K__RuntimeException   ( 0x2000 | __J2K__Exception )
#define __J2K__IllegalArgumentException   ( 0x4000 | __J2K__RuntimeException )
#define __J2K__IndexOutOfBoundsException   ( 0x8000 | __J2K__RuntimeException )
#define __J2K__ClassNotFoundException   ( __J2K__Exception | 0x01 )
#define __J2K__CloneNotSupportedException   ( __J2K__Exception | 0x02 )
#define __J2K__IllegalAccessException   ( __J2K__Exception | 0x04 )
#define __J2K__InstantiationException   ( __J2K__Exception | 0x08 )
#define __J2K__InterruptedException   ( __J2K__Exception | 0x10 )
#define __J2K__NoSuchFieldException   ( __J2K__Exception | 0x20 )
#define __J2K__NoSuchMethodException   ( __J2K__Exception | 0x40 )
#define __J2K__ArithmeticException   ( __J2K__RuntimeException | 0x01 )
#define __J2K__ArrayStoreException   ( __J2K__RuntimeException | 0x02 )
#define __J2K__ClassCastException   ( __J2K__RuntimeException | 0x04 )
#define __J2K__IllegalStateException   ( __J2K__RuntimeException | 0x08 )
#define __J2K__IllegalMonitorStateException   ( __J2K__RuntimeException | 0x10 )
#define __J2K__NegativeArraySizeException   ( __J2K__RuntimeException | 0x20 )
#define __J2K__NullPointerException   ( __J2K__RuntimeException | 0x40 )
#define __J2K__SecurityException   ( __J2K__RuntimeException | 0x80 )
#define __J2K__ClassCircularityError   ( __J2K__LinkageError | 0x01 )
#define __J2K__ClassFormatError   ( __J2K__LinkageError | 0x02 )
#define __J2K__ExceptionInInitializerError   ( __J2K__LinkageError | 0x04 )
#define __J2K__NoClassDefFoundError   ( __J2K__LinkageError | 0x08 )
#define __J2K__UnsatisfiedLinkError   ( __J2K__LinkageError | 0x10 )
#define __J2K__VerifyError   ( __J2K__LinkageError | 0x20 )
#define __J2K__IllegalThreadStateException   ( __J2K__IllegalArgumentException | 0x01 )
#define __J2K__NumberFormatException   ( __J2K__IllegalArgumentException | 0x02 )
#define __J2K__AbstractMethodError   ( __J2K__IncompatibleClassChangeError | 0x01 )
#define __J2K__IllegalAccessError   ( __J2K__IncompatibleClassChangeError | 0x02 )
#define __J2K__InstantiationError   ( __J2K__IncompatibleClassChangeError | 0x04 )
#define __J2K__NoSuchFieldError   ( __J2K__IncompatibleClassChangeError | 0x08 )
#define __J2K__NoSuchMethodError   ( __J2K__IncompatibleClassChangeError | 0x10 )
#define __J2K__ArrayIndexOutOfBoundsException   ( __J2K__IndexOutOfBoundsException | 0x01 )
#define __J2K__StringIndexOutOfBoundsException   ( __J2K__IndexOutOfBoundsException | 0x02 )
#define __J2K__InternalError   ( __J2K__VirtualMachineError | 0x01 )
#define __J2K__OutOfMemoryError   ( __J2K__VirtualMachineError | 0x02 )
#define __J2K__StackOverflowError   ( __J2K__VirtualMachineError | 0x04 )
#define __J2K__UnknownError   ( __J2K__VirtualMachineError | 0x08 )

Enumerations

enum  ThrowableType {
  Throwable = ( 0x0100 ), Error = ( 0x0200 | ( 0x0100 ) ), LinkageError = ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ), Exception = ( 0x0800 | ( 0x0100 ) ),
  IncompatibleClassChangeError = ( 0x0F00 | ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) ), VirtualMachineError = ( 0x1000 | ( 0x0200 | ( 0x0100 ) ) ), RuntimeException = ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ), IllegalArgumentException = ( 0x4000 | ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) ),
  IndexOutOfBoundsException = ( 0x8000 | ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) ), ClassNotFoundException = ( ( 0x0800 | ( 0x0100 ) ) | 0x01 ), CloneNotSupportedException = ( ( 0x0800 | ( 0x0100 ) ) | 0x02 ), IllegalAccessException = ( ( 0x0800 | ( 0x0100 ) ) | 0x04 ),
  InstantiationException = ( ( 0x0800 | ( 0x0100 ) ) | 0x08 ), InterruptedException = ( ( 0x0800 | ( 0x0100 ) ) | 0x10 ), NoSuchFieldException = ( ( 0x0800 | ( 0x0100 ) ) | 0x20 ), NoSuchMethodException = ( ( 0x0800 | ( 0x0100 ) ) | 0x40 ),
  ArithmeticException = ( ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) | 0x01 ), ArrayStoreException = ( ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) | 0x02 ), ClassCastException = ( ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) | 0x04 ), IllegalStateException = ( ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) | 0x08 ),
  IllegalMonitorStateException = ( ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) | 0x10 ), NegativeArraySizeException = ( ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) | 0x20 ), NullPointerException = ( ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) | 0x40 ), SecurityException = ( ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) | 0x80 ),
  ClassCircularityError = ( ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) | 0x01 ), ClassFormatError = ( ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) | 0x02 ), ExceptionInInitializerError = ( ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) | 0x04 ), NoClassDefFoundError = ( ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) | 0x08 ),
  UnsatisfiedLinkError = ( ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) | 0x10 ), VerifyError = ( ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) | 0x20 ), IllegalThreadStateException = ( ( 0x4000 | ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) ) | 0x01 ), NumberFormatException = ( ( 0x4000 | ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) ) | 0x02 ),
  AbstractMethodError = ( ( 0x0F00 | ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) ) | 0x01 ), IllegalAccessError = ( ( 0x0F00 | ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) ) | 0x02 ), InstantiationError = ( ( 0x0F00 | ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) ) | 0x04 ), NoSuchFieldError = ( ( 0x0F00 | ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) ) | 0x08 ),
  NoSuchMethodError = ( ( 0x0F00 | ( 0x0400 | ( 0x0200 | ( 0x0100 ) ) ) ) | 0x10 ), ArrayIndexOutOfBoundsException = ( ( 0x8000 | ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) ) | 0x01 ), StringIndexOutOfBoundsException = ( ( 0x8000 | ( 0x2000 | ( 0x0800 | ( 0x0100 ) ) ) ) | 0x02 ), InternalError = ( ( 0x1000 | ( 0x0200 | ( 0x0100 ) ) ) | 0x01 ),
  OutOfMemoryError = ( ( 0x1000 | ( 0x0200 | ( 0x0100 ) ) ) | 0x02 ), StackOverflowError = ( ( 0x1000 | ( 0x0200 | ( 0x0100 ) ) ) | 0x04 ), UnknownError = ( ( 0x1000 | ( 0x0200 | ( 0x0100 ) ) ) | 0x08 )
}


Define Documentation

#define __J2K__AbstractMethodError   ( __J2K__IncompatibleClassChangeError | 0x01 )
 

Definition at line 48 of file E5.H.

#define __J2K__ArithmeticException   ( __J2K__RuntimeException | 0x01 )
 

Definition at line 29 of file E5.H.

#define __J2K__ArrayIndexOutOfBoundsException   ( __J2K__IndexOutOfBoundsException | 0x01 )
 

Definition at line 54 of file E5.H.

#define __J2K__ArrayStoreException   ( __J2K__RuntimeException | 0x02 )
 

Definition at line 30 of file E5.H.

#define __J2K__ClassCastException   ( __J2K__RuntimeException | 0x04 )
 

Definition at line 31 of file E5.H.

#define __J2K__ClassCircularityError   ( __J2K__LinkageError | 0x01 )
 

Definition at line 38 of file E5.H.

#define __J2K__ClassFormatError   ( __J2K__LinkageError | 0x02 )
 

Definition at line 39 of file E5.H.

#define __J2K__ClassNotFoundException   ( __J2K__Exception | 0x01 )
 

Definition at line 21 of file E5.H.

#define __J2K__CloneNotSupportedException   ( __J2K__Exception | 0x02 )
 

Definition at line 22 of file E5.H.

#define __J2K__Error   ( 0x0200 | __J2K__Throwable )
 

Definition at line 11 of file E5.H.

#define __J2K__Exception   ( 0x0800 | __J2K__Throwable )
 

Definition at line 13 of file E5.H.

#define __J2K__ExceptionInInitializerError   ( __J2K__LinkageError | 0x04 )
 

Definition at line 40 of file E5.H.

#define __J2K__HiThrowType   ( 0x00FF )
 

Definition at line 8 of file E5.H.

#define __J2K__IllegalAccessError   ( __J2K__IncompatibleClassChangeError | 0x02 )
 

Definition at line 49 of file E5.H.

#define __J2K__IllegalAccessException   ( __J2K__Exception | 0x04 )
 

Definition at line 23 of file E5.H.

#define __J2K__IllegalArgumentException   ( 0x4000 | __J2K__RuntimeException )
 

Definition at line 18 of file E5.H.

#define __J2K__IllegalMonitorStateException   ( __J2K__RuntimeException | 0x10 )
 

Definition at line 33 of file E5.H.

#define __J2K__IllegalStateException   ( __J2K__RuntimeException | 0x08 )
 

Definition at line 32 of file E5.H.

#define __J2K__IllegalThreadStateException   ( __J2K__IllegalArgumentException | 0x01 )
 

Definition at line 45 of file E5.H.

#define __J2K__IncompatibleClassChangeError   ( 0x0F00 | __J2K__LinkageError )
 

Definition at line 14 of file E5.H.

#define __J2K__IndexOutOfBoundsException   ( 0x8000 | __J2K__RuntimeException )
 

Definition at line 19 of file E5.H.

#define __J2K__InstantiationError   ( __J2K__IncompatibleClassChangeError | 0x04 )
 

Definition at line 50 of file E5.H.

#define __J2K__InstantiationException   ( __J2K__Exception | 0x08 )
 

Definition at line 24 of file E5.H.

#define __J2K__InternalError   ( __J2K__VirtualMachineError | 0x01 )
 

Definition at line 57 of file E5.H.

#define __J2K__InterruptedException   ( __J2K__Exception | 0x10 )
 

Definition at line 25 of file E5.H.

#define __J2K__LinkageError   ( 0x0400 | __J2K__Error )
 

Definition at line 12 of file E5.H.

#define __J2K__LoThrowType   ( 0xFF00 )
 

Definition at line 7 of file E5.H.

#define __J2K__NegativeArraySizeException   ( __J2K__RuntimeException | 0x20 )
 

Definition at line 34 of file E5.H.

#define __J2K__NoClassDefFoundError   ( __J2K__LinkageError | 0x08 )
 

Definition at line 41 of file E5.H.

#define __J2K__NoSuchFieldError   ( __J2K__IncompatibleClassChangeError | 0x08 )
 

Definition at line 51 of file E5.H.

#define __J2K__NoSuchFieldException   ( __J2K__Exception | 0x20 )
 

Definition at line 26 of file E5.H.

#define __J2K__NoSuchMethodError   ( __J2K__IncompatibleClassChangeError | 0x10 )
 

Definition at line 52 of file E5.H.

#define __J2K__NoSuchMethodException   ( __J2K__Exception | 0x40 )
 

Definition at line 27 of file E5.H.

#define __J2K__NullPointerException   ( __J2K__RuntimeException | 0x40 )
 

Definition at line 35 of file E5.H.

#define __J2K__NumberFormatException   ( __J2K__IllegalArgumentException | 0x02 )
 

Definition at line 46 of file E5.H.

#define __J2K__OutOfMemoryError   ( __J2K__VirtualMachineError | 0x02 )
 

Definition at line 58 of file E5.H.

#define __J2K__RuntimeException   ( 0x2000 | __J2K__Exception )
 

Definition at line 17 of file E5.H.

#define __J2K__SecurityException   ( __J2K__RuntimeException | 0x80 )
 

Definition at line 36 of file E5.H.

#define __J2K__StackOverflowError   ( __J2K__VirtualMachineError | 0x04 )
 

Definition at line 59 of file E5.H.

#define __J2K__StringIndexOutOfBoundsException   ( __J2K__IndexOutOfBoundsException | 0x02 )
 

Definition at line 55 of file E5.H.

#define __J2K__Throwable   ( 0x0100 )
 

Definition at line 10 of file E5.H.

#define __J2K__UnknownError   ( __J2K__VirtualMachineError | 0x08 )
 

Definition at line 60 of file E5.H.

#define __J2K__UnsatisfiedLinkError   ( __J2K__LinkageError | 0x10 )
 

Definition at line 42 of file E5.H.

#define __J2K__VerifyError   ( __J2K__LinkageError | 0x20 )
 

Definition at line 43 of file E5.H.

#define __J2K__VirtualMachineError   ( 0x1000 | __J2K__Error )
 

Definition at line 16 of file E5.H.


Enumeration Type Documentation

enum ThrowableType
 

Enumeration values:
Throwable 
Error 
LinkageError 
Exception 
IncompatibleClassChangeError 
VirtualMachineError 
RuntimeException 
IllegalArgumentException 
IndexOutOfBoundsException 
ClassNotFoundException 
CloneNotSupportedException 
IllegalAccessException 
InstantiationException 
InterruptedException 
NoSuchFieldException 
NoSuchMethodException 
ArithmeticException 
ArrayStoreException 
ClassCastException 
IllegalStateException 
IllegalMonitorStateException 
NegativeArraySizeException 
NullPointerException 
SecurityException 
ClassCircularityError 
ClassFormatError 
ExceptionInInitializerError 
NoClassDefFoundError 
UnsatisfiedLinkError 
VerifyError 
IllegalThreadStateException 
NumberFormatException 
AbstractMethodError 
IllegalAccessError 
InstantiationError 
NoSuchFieldError 
NoSuchMethodError 
ArrayIndexOutOfBoundsException 
StringIndexOutOfBoundsException 
InternalError 
OutOfMemoryError 
StackOverflowError 
UnknownError 

Definition at line 62 of file E5.H.

00062                    {
00063   Throwable                       = __J2K__Throwable,
00064   Error                           = __J2K__Error,
00065   LinkageError                    = __J2K__LinkageError,
00066   Exception                       = __J2K__Exception,
00067   IncompatibleClassChangeError    = __J2K__IncompatibleClassChangeError,
00068   VirtualMachineError             = __J2K__VirtualMachineError,
00069   RuntimeException                = __J2K__RuntimeException,
00070   IllegalArgumentException        = __J2K__IllegalArgumentException,
00071   IndexOutOfBoundsException       = __J2K__IndexOutOfBoundsException,
00072   ClassNotFoundException          = __J2K__ClassNotFoundException,
00073   CloneNotSupportedException      = __J2K__CloneNotSupportedException,
00074   IllegalAccessException          = __J2K__IllegalAccessException,
00075   InstantiationException          = __J2K__InstantiationException,
00076   InterruptedException            = __J2K__InterruptedException,
00077   NoSuchFieldException            = __J2K__NoSuchFieldException,
00078   NoSuchMethodException           = __J2K__NoSuchMethodException,
00079   ArithmeticException             = __J2K__ArithmeticException,
00080   ArrayStoreException             = __J2K__ArrayStoreException,
00081   ClassCastException              = __J2K__ClassCastException,
00082   IllegalStateException           = __J2K__IllegalStateException,
00083   IllegalMonitorStateException    = __J2K__IllegalMonitorStateException,
00084   NegativeArraySizeException      = __J2K__NegativeArraySizeException,
00085   NullPointerException            = __J2K__NullPointerException,
00086   SecurityException               = __J2K__SecurityException,
00087   ClassCircularityError           = __J2K__ClassCircularityError,
00088   ClassFormatError                = __J2K__ClassFormatError,
00089   ExceptionInInitializerError     = __J2K__ExceptionInInitializerError,
00090   NoClassDefFoundError            = __J2K__NoClassDefFoundError,
00091   UnsatisfiedLinkError            = __J2K__UnsatisfiedLinkError,
00092   VerifyError                     = __J2K__VerifyError,
00093   IllegalThreadStateException     = __J2K__IllegalThreadStateException,
00094   NumberFormatException           = __J2K__NumberFormatException,
00095   AbstractMethodError             = __J2K__AbstractMethodError,
00096   IllegalAccessError              = __J2K__IllegalAccessError,
00097   InstantiationError              = __J2K__InstantiationError,
00098   NoSuchFieldError                = __J2K__NoSuchFieldError,
00099   NoSuchMethodError               = __J2K__NoSuchMethodError,
00100   ArrayIndexOutOfBoundsException  = __J2K__ArrayIndexOutOfBoundsException,
00101   StringIndexOutOfBoundsException = __J2K__StringIndexOutOfBoundsException,
00102   InternalError                   = __J2K__InternalError,
00103   OutOfMemoryError                = __J2K__OutOfMemoryError,
00104   StackOverflowError              = __J2K__StackOverflowError,
00105   UnknownError                    = __J2K__UnknownError
00106 };


Generated on Sun Oct 14 18:47:09 2001 for Standard J2K Library by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001