posted 16 years ago
My assignment jar is 2.5Mb :-(
So I'm in big trouble. I'm going to boil my code to reduce but also..
The part of the jar occupied by the javadoc is huge I'm sure I can make savings but of course the assignment javadoc instructions are incomplete, contradictory etc:
Javadoc style comments must be used for each element of the public interface of each class
OK - no problem with that.
You must create a full suite of documentation for the classes
I must do it - but what do I read into "full suite". Can I turn off javadoc index, tree and use to save a bit of space or would that not be considered to be full suite?
provide javadoc documentation for all classes you write...subdirectory containing javadoc documentation for all classes and interfaces you are submitting
Many of my classes are private inner classes or package protected classes. If I use -public modifier when generating javadoc these classes will be skipped. if I use -private than I'm reporting on private members too.
Does this mean I'm going to have to make all my classes public - that would seem very bad OO.
Michael