vote up 7 vote down star
1

Is there a project that maintains annotations for patterns?

For example, when I write a builder, I want to mark it with @Builder.

Annotating in this way immediately provides a clear idea of what the code implements. Also, the Javadoc of the @Builder annotation can reference explanations of the builder pattern. Furthermore, navigating from the Javadoc of a builder implementation to @Builder Javadoc is made easy by annotating @Builder with @Documented.

I've being slowing accumulating a small set of such annotations for patterns and idioms that I have in my code, but I'd like to leverage a more complete existing project if it exists. If there is no such project, maybe I can share what I have by spinning it off to a separate pattern/idiom annotation project.

Update: I've created the Pattern Notes project in response to this discussion. Contributions welcome! Here is @Builder

flag

50% accept rate
I don't have an answer for your question but I'm wondering why you want to do this? Unless it's some really obscure design pattern, I think most developers will be able to spot them without any extra documentation. Couldn't you just name your class WhateverBuilder? – Outlaw Programmer Sep 24 '08 at 14:18
I see your point, but there are developers of all skill levels, so general assumptions can be dangerous. It doesn't consume much space or time to add the annotations. Also, linking to supporting docs reduces the need to repeat docs in place with a convenient centralized point to collect docs. – Greg Mattes Sep 24 '08 at 14:45
I can see the benefit of having documentation produced automatically that would identify the role of each class used in a pattern. Sometime's it's not completely obvious. – unforgiven3 Sep 24 '08 at 14:50
I just don't see the value in labeling something as "this follows pattern X." I mean, what does it get you? Are you trying to keep other developers from modifying your code and breaking the pattern? – Outlaw Programmer Sep 24 '08 at 14:52
Continuing with @Builder as an example. The Javadoc for my @Builder references "Effective Java" Item 2 which is a well-written, 6-page discussion of the pattern by an expert. I'd like that to be in the mind of a developer when maintaining the code. It's about consistency, not "don't touch this." – Greg Mattes Sep 24 '08 at 15:02
show 4 more comments

7 Answers

vote up 3 vote down

nice interesting ideas. I have so far not heard about annotating design patterns. What happens if a class participates in more than a pattern ?

link|flag
More than one annotation! :) I suppose you could also have a single <code>@Patterns</code> annotation that accepts an array of symbols (strings) naming all patterns, but the nice <code>@Documented</code> link would be broken. – Greg Mattes Sep 24 '08 at 14:38
I like this question but it should probably be a comment under the original question instead of an 'answer.' – Outlaw Programmer Sep 24 '08 at 14:50
vote up 4 vote down

This seems like a misuse of annotations to me. Sure, I could see why you might want to note what design pattern a class is helping to implement, but just using the Javadoc and/or the name of the class seems more appropriate. The name of the pattern that you're using is of no actual importance to the code itself... patterns are just a guide for an often used way of solving a problem. A comment would suffice, rather than creating a new file for every pattern you use.

link|flag
Good point, but my scheme does have a comment: it's the Javadoc of the annotation. That's why the annotation is @Documented. The annotation links to docs that might otherwise be duplicated – Greg Mattes Sep 24 '08 at 20:03
I agree with @ColinD, I see no value in knowing what pattern a piece of code says it is using, as a comment or annotation. – cynicalman Sep 25 '08 at 1:57
Intent! Adding a comment or annotation to state which patterns are being used helps communicate the design intent to the reader/maintainer. This can help them decide where to make changes that might be needed later. – Scott Stanchfield Mar 25 at 14:33
vote up 3 vote down

This is an interesting solution, but I keep wondering what's really the problem you're solving with this? Or in other words, what do you get from using something like this what you don't get by a proper comment on top of your class about it's usage?

I can think of a few cons but can't think of benefits apart from this being the nice standardized way to document code.

Cons would be, namely:

  1. one more thing for programmers to think about, which is never a good thing
  2. unannotated patterns might be confusing - someone probably forgot to document it, but maybe it's not a pattern..?
  3. can you really annotate all patterns..? what about patterns which are not tied to a single class/method, for example three-tier architectural pattern, or thread pool, or even MVC?
link|flag
(Problem solved/more to think about): I'd bet most of us have opened a source file and quickly asked, "What were the previous developers thinking when they wrote this?" This idea of applying pattern annotations helps to answer such questions. Answering questions like that, even if only partially, provides a valuable "big picture" view for a section of code. Also, with @Documented links, more background material can be found easily. The burden for this additional pattern information is small. – Greg Mattes Apr 24 at 14:22
(Applicability/Coverage): It probably doesn't matter whether all patterns /can/ be annotated, or whether all patterns /are/ annotated in practice. Every little bit helps to increase value. Today, we have lots of code that isn't explicitly marked with intended patterns. The absence of an annotation doesn't mean that some pattern isn't there, just that it isn't documented. – Greg Mattes Apr 24 at 14:23
(Patterns spread across various locations): The notion of patterns that are spread across different sections of code is interesting. Just yesterday I applied the Template View pattern (martinfowler.com/eaaCatalog/templateView.html/…) which has a "Template" and a "Helper." Annotating the Helper with @TemplateView seemed to tell only part of the story. Perhaps the notion of a "role" should be introduced. For example, @TemplateView(role = "Helper"), or @MVC(role = "Model"). – Greg Mattes Apr 24 at 14:24
vote up 0 vote down

If you can also write an annotation processor that will verify certain properties of the pattern - for example checking for common mistakes when implementing the pattern - this would be very useful. Documentation for the compiler as well as the programmer.

link|flag
Yes, I've had this though as well. I seems like a reasonable next step to investigate. Though it's not immediately clear what properties could be verified since there is no one way to implement any particular pattern. Such a solution would likely produce a certain number of "false positives" like other QA tools. That doesn't mean that such a tool would be without value. With enough metadata, perhaps false positives could be kept reasonably low. – Greg Mattes Aug 18 at 12:39
vote up 2 vote down

Firstly, what you want to do is documenting an intention (or intention*s*).

So, why not use a generic version of your annotation, something like @UsePattern that use @Documented which is a marker annotation (nice tuorial from IBM)? What i don't like is that the annotation is kept at runtime, which is a waste unless you want to affect program semantics.

Or a Custom Javadoc tag which seems more appropriate.

Some information about the comparison: Comparing Annotations and Javadoc Tags with a nice one sentence summmary:

<< In general, if the markup is intended to affect or produce documentation, it should probably be a javadoc tag; otherwise, it should be an annotation. >>

There is/was also some debate on documentation as annotation or as javadoc tags.

link|flag
1  
These are great points and great resource links - thanks! The majority of my annotations do have a Source retention policy, so they are not kept at runtime. As for custom Javadoc tags: how would I share them? Annotations can be packaged up as a jar, but custom Javadoc tags are implemented with command line switches - not as easy to share. Also, annotations open the possiblity of creating tools that can check pattern implementation consistency. The comparison of annotations and Javadoc tags says that annotations "affect the way programs are treated by tools and libraries." – Greg Mattes Oct 7 at 14:04
vote up 2 vote down

I just stumbled on another article that is interesting for you:

http://onjava.com/lpt/a/3340

Which talks about marker interfaces, like Serilizable.

In their words:

...just because a class declares that it "implements Serializable" doesn't mean that it has correctly implemented the Serializable contract.

Since Java can't really tell if the contract has been met, using the marker interface is more of an explicit pledge by the programmer that it has.

The overlooked benefit of marker interfaces is that they also document the intention that a contract should be met...

 

Why haven't design choices traditionally been recorded in source code? Mostly, because there has been no clear place to put them.

Even if each "typesafe enumeration" class had a comment noting that it followed that pattern, any elaboration (much less tutorial information) would not have been added because one either had to copy it repeatedly, or worse, place it sporadically in arbitrary spots.

When creating the JavaDoc comments attached to each Design Marker interface, one can put in more detail than is typical because the comments do not need to be repeated anywhere else.

They also mention some downsides, this a good food for thought!

link|flag
1  
Thank you! This is great information to add to this topic! – Greg Mattes Oct 9 at 13:59
vote up 0 vote down

Else there is this 2008 Computer Science paper: Design Pattern Implementation in Java and AspectJ, it was presented at OOPSLA 2008, which should give an indication about its quality.

A nice quote from it:

... the mere existence of classes that exclusively contain pattern code serve as records of what patterns are being used. In the AspectJ cases, we observe two additional improvements. First, all code related to a particular pattern instance is contained in a single module (which defines participants, assigns roles, etc.). This means that the entire description of a pattern instance is localized and does not “get lost” [21] or “degenerate” [7] in the system. Secondly, with the current AspectJ IDE support, all references, advised methods etc. are hyperlinks that allow a developer an overview of the assignment of roles and where the conceptual operations of interest are...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.