posted 18 years ago
Kotha-
There are four levels of access control:
private
default
protected
public
But there are only three access modifiers:
private
protected
public
In most cases if an access modifier is not explicitly supplied the access level is default. Still, this is not always the case. Interface methods, for instance, are implicitly public - even if the public keyword is not supplied.
Hope that helps,
Josh