FroMage / jax-doclets

Set of JavaDoc doclets for modern Java annotations APIs
http://www.lunatech-labs.com/open-source/jax-doclets
GNU Lesser General Public License v3.0
26 stars 23 forks source link

Print parameter documentation in the order its defined in #34

Closed brendanlong closed 12 years ago

brendanlong commented 12 years ago

I changed the parameter info to be stored in Lists instead of Maps so we get it in the same order it was defined in. The previous version displayed parameters in arbitrary order, and we never look up parameters by name anyway.

Are the size of my pull requests ok or would prefer that I do them in larger chunks?

brendanlong commented 12 years ago

Apparently this just automatically adds everything I do anyway, so I guess the length is just based on how much I do.

FroMage commented 12 years ago

Hey this is great, thanks. Can you explain the exclude taglet though? Is this a new feature? If yes can you add documentation for it please?

FroMage commented 12 years ago

Note that #28 already has support for filtering but as a command-line.

brendanlong commented 12 years ago

The @exclude taglet would be a new feature. I think it's generally more useful than a command-line option, since a command-line option has to be put in every time, while @exclude only needs to be added once.

brendanlong commented 12 years ago

I'll write some documentation for it on Monday probably.

brendanlong commented 12 years ago

I added some documentation for @exclude.

FroMage commented 12 years ago

Thanks a lot!