Known Problems fixed in AJIS 7.0.1

- KA19-018: Problems binding controlling results types
 Problem:    If a tagged type has a primitive with a controlling result type,
             but cannot be extended in java (because of e.g. non bindable 
             primitives), then the resulting Ada glue code will not compile.
 Workaround: Use an access type for the result, or solve the reasons why the
             type cannot be bound.

- KA20-073: Unable to bind java reserved words in variable or parameters
 Problem:    If a java reserved word is used for an Ada variable or parameter
             identifier, the resulting Java binding code will not be
             compilable.
 Workaround: Change the casing of the word in the Ada side.

- K930-024: Unable to bind "&" operator
 Problem:    AJIS generates non compilable code when binding "&" operators.
 Workaround: Provide a subprogram with an explicit name instead.

- K915-027: Two-dimension array subtypes can't be accessed in record
 Problem:    If a field of a record is of a two-dimensional array subtype,
             the code generated by AJIS for the accessor will not compile.
 Workaround: Use a type instead. 

- K726-003: Wrong usage of Find_Class
 Problem:    The code generated by ada2java does not use the proper convention
             when calling Find_Class, generating code that is not runnable on
             some Java VM.
 Workaround: Use a standard Java VM instead.

- K323-015: Enumeration derived types aren't bound.
 Problem:    ada2java will not be able to bind enumeration derived types.
 Workaround: Use a subtype instead. 

- JB26-018: Primitives with dispatching results aren't properly bound
 Problem:    Primitives of tagged type with dispatching result create a wrong
             binding, where the resulting object is not properly bound.
 Workaround: Use procedures instead of functions, and take care of the object
             creation outside of the primitive.
