On 2/15/06, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: > there is no need to say "public" inside of interface > > each method defined is public and abstract > > same for constants. > > "public static final" is not needed > all constants are > > public static final String x = "x"; > same as > String x = "x";
Thanks. I suspected it might be something like that, but I'd never seen it done that way before, and wanted to make sure.
