RE: Do imports inherit?

2011-09-11 Thread Caldarale, Charles R
From: Donald Jolley [mailto:jolleyt...@gmail.com] Subject: Do imports inherit? I was sort of thinking that if I imported those classes into a parent class that would be sufficient for all the children. Apparently it isn't. Your final conclusion is correct - it's not sufficient. This is

Re: Do imports inherit?

2011-09-11 Thread Donald Jolley
Thanks for the clarification. Also note that it's generally frowned upon to import with wildcards; be specific with the classes you use. Your suggestion certainly seems reasonable to me. I do, however, note that the use of wildcards seems to be fairly prolific. In this particular case my use