--- "Clifton C. Craig" <[EMAIL PROTECTED]> wrote: > One other thing. (I'll move this discussion to the > other list if I'm > asked to.) There seems to be another glitch here. > XJavadoc is having > trouble resolving a reference to > java.util.Properties. I get this in my > output: > INFO: Some classes refer to other classes that > were not found among > the sources or on the classpath. > (Perhaps the referred class doesn't exist? > Hasn't been > generated yet?) > The referring classes do not import any > fully qualified classes > matching these classes. > However, since no packages are imported, > xjavadoc has assumed > that the referred classes > belong to the same package as the referring > class. The classes are: > D:\scm\src\com\icsaward\award\ConfigProperties.java > --> Properties > qualified to com.icsaward.award.Properties > > Oh, I see now. The error says that the referring > class does not import > any fully qualified classes matching the Properties > class. I have the > import listed as follows in ConfigProperties: > import java.util.*; > > It seems a little funny but I guess it's a little > difficult knowing > which wild card to resolve against if there were > more than one that > matched. But that's not a likely scenario as it is > bad practice anyway. > I dunno, it just feels wrong to me. I just wanted to > bring it up in case > anyone else has stumbled across this problem.
xjavadoc likes fully qualified names, and imports without wildcards. this is a known issue ( for those who live long enough with xjavadoc ) and I assume that it will not be fixed ( since original developers are moved to another interesting topics ) A lot of style checking programs will barf on wildcard imports. Do not use them - this is considered bad practice ( and not easy to read ) regards, ===== ----[ Konstantin Pribluda ( ko5tik ) ]---------------- Zu Verst�rkung meines Teams suche ich ab Sofort einen Softwareentwickler[In] f�r die Festanstellung. Arbeitsort: Mainz Skills: Programieren, Kentnisse in OpenSource-Bereich ----[ http://www.pribluda.de ]------------------------ __________________________________ Do you Yahoo!? Yahoo! Finance Tax Center - File online. File on time. http://taxes.yahoo.com/filing.html ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
