Good news first: The book "UML 2.0 in a Nutshell" is available as a
Now the bad news (you knew this was coming, right?): Apparently the UML plugin for Netbeans was discontinued when Netbeans moved up to version 7. What to do, what to do?
Back to good news: I found this blog post by Matthew Johnson (grad student at UNC-Charlotte), in which he identifies an alternative solution that works in Netbeans 7.x. It uses the yWorks UML Doclet, which is available as in both a free "community edition" and a paid "professional edition". (I'm using the free edition, at least until I figure out whether I'll do enough UML diagrams to warrant investigating the paid version.) The yWorks doclet embeds UML diagrams in documentation generated by Javadoc for existing Java code (when you generate the javadocs), but does not work in the other direction (producing code stubs from UML diagrams). That's fine with me; I never put enough forethought into a program to produce any sort of diagram in advance of the onset of coding.
Installing the doclet is trivial; just download it, unpack the zip archive, and park the directory somewhere you can find. Using it proved a bit problematic at first, but a combination of a tip by commenter Kai Zander on Johnson's blog and a little trial-and-error by me got it working. Here are the key steps (once the software is installed). For any Netbeans Java project:
- Per Kai's tip, go to the resources folder of the UML Doclet installation directory, edit ydoc.cfg, find the tag <group name="tiling"> and change the enabled property from true to false. Otherwise, you tend to get UML diagrams with an empty swath down the middle.
- Clean and build the project. (The user guide page for UML Doclet says that you need to add paths to any external libraries used by the project to the docletpath string, but I found that if you build the project first -- which copies any external libraries into the dist/lib folder -- UML Doclet will find them without needing to add them to docletpath.)
- Right-click the project name, click Properties, then drill down to Build>Documenting. Add the following to the Additional Javadocs Options entry: -docletpath "<ypath>/lib/ydoc.jar" -doclet ydoc.doclets.YStandard -resourcepath "<ypath>/resources" -umlautogen, where <ypath> is the absolute path to the UML Doclet installation folder. The last switch (-umlautogen) tells UML Doclet to generate overview, package and class diagrams for all documented files. There are alternative switches to generate some but not all three types of diagrams, and there are switches that will restrict diagrams to documented files containing an @y.uml tag. If you omit all the -uml... switches, or use -umlgen but don't have @y.uml tags in any of your files, you won't get any UML diagrams because the doclet will think it has no work to do.
- Now right-click the project, click Generate Javadoc, and discover that your javadocs have embedded diagrams.
Package Diagram |
Class Diagram |
> "Good news first: The book `UML 2.0 in a Nutshell` is available as a free e-book."
ReplyDeleteFYI: free-as-in-pirated, this is.
Oops! I wondered what the business model was if O'Reilly was giving away e-books. I guess they aren't; the e-book version is $32 at their website. What fooled me is that the site I found it on (IT eBooks) operates openly in Germany. If O'Reilly hasn't licensed the content to them, I would expect the EC copyright police to be knocking on their door.
DeleteThanks for the tip. I'll have to reevaluate whether I have enough use for UML diagrams to warrant paying for the book. In the meantime, There is a fairly nice online resource that really is free (as in web pages). I'll add the link up above.
netbeans 6.7.1 was last which supports uml-plugin (uml 6)
ReplyDeleteTH