new rule: factory method naming conventions
Brought to you by:
chrismair
See http://blog.joda.org/2011/09/factory-names.html
A factory method is a method on an object that is static and returns the type of the enclosing class.
This is clearly a factory method.
Class Foo {
static Foo create() { ... }
}
Determine a good naming convention and write a rule for it.