J
James D Carroll
Could someone explain this:
interface myInterface{
void foo();
}
then...
class myClass implements myInterface{
void foo(){
'do this
}
}
I want the Interface, its methods, and the implementing class and its
methods to have "package" level permissions. But I get the complier error:
attempting to assign weaker access privileges; was public
Could someone explain this (or provide a link that does) ?
Thanks
interface myInterface{
void foo();
}
then...
class myClass implements myInterface{
void foo(){
'do this
}
}
I want the Interface, its methods, and the implementing class and its
methods to have "package" level permissions. But I get the complier error:
attempting to assign weaker access privileges; was public
Could someone explain this (or provide a link that does) ?
Thanks