// JP opened flex table

Click to See Complete Forum and Search --> : Bad class access flags


Josip Rakonca
December 14th, 2001, 09:13 AM
While running my midlet app in JBuilder I've got this error message: ALERT:Bad class access flags. What's that?


Josip Rakonca

Norm
December 14th, 2001, 11:04 AM
It could be this:
In a class file there is a field: access_flags that is "a mask of flags used to denote access permissions to and properties of this class or interface" The values are:
0x0001 public,
0x0010 final,
0x0020 treat superclass methods specially ...,
0x0200 interface not class
0x0400 abstract

The byte in question in your class file must be corrupted.

Norm

//JP added flex table