how deep can a package be? any performance issue?

Hi experts,

Is there any performance issue if I create deep path to a class for the sake of a well organized classes?

com.mycompany.mydivision.projectA.forms.news.headlines;

com.mycompany.mydivision.projectA.forms.news.events;

com.mycompany.mydivision.projectA.dao.calendar.events;

or

a.b.c.d.e.f.g.h.i.j.k.l;?

any reading materials on this?

Thanks

[403 byte] By [astralliquid] at [2007-9-27 20:35:05]
# 1
I don't know what the limit on deepness is, but there shouldn't be any performance issues. All the classes are loaded when your program starts, so the JVM doesn't need to traverse through all those directories each time you reference one of the classes.
adramolek at 2007-7-7 1:40:18 > top of Java-index,Archived Forums,Java Programming...
# 2
thanks for your thoughts.. I will go ahead and organize it.. :)
astralliquid at 2007-7-7 1:40:18 > top of Java-index,Archived Forums,Java Programming...