PROTECTED]
Sent: Monday, February 24, 2003 12:12 PM
To: [EMAIL PROTECTED]
Subject: RE: Base Classes and java.lang.IllegalAccessException
Whatever visibility class B has of A will go to whatever class is using
B. The protected nature of the A constructor is not an issue for C, if C
has public acce
Scott
-Original Message-
From: Cory Wilkerson [mailto:[EMAIL PROTECTED]
Sent: Friday, February 21, 2003 5:35 PM
To: [EMAIL PROTECTED]
Subject: RE: Base Classes and java.lang.IllegalAccessException
Do you need to enforce/have to have that protected default
constructor? I'm getting by
sage-
From: Cory Wilkerson [mailto:[EMAIL PROTECTED]
Sent: Friday, February 21, 2003 5:35 PM
To: [EMAIL PROTECTED]
Subject: RE: Base Classes and java.lang.IllegalAccessException
Do you need to enforce/have to have that protected default constructor? I'm getting
by just fine with base c
PM
To: '[EMAIL PROTECTED]'
Cc: 'Almeida, Timothy'
Subject: RE: Base Classes and java.lang.IllegalAccessException
I apologize a bit since my example doesn't show this. The methods of the base class
are public so can't they basically be thought of as being part of su
public class B
extends A
{
public B()
{
super();
}
}
-Original Message-
From: Almeida, Timothy [mailto:[EMAIL PROTECTED]
Sent: Friday, February 21, 2003 5:12 PM
To: Scott Leschke
Subject: RE: Base Classes and java.lang.IllegalAccessException
Doesn't surprise me very mu