aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGregory Kick <gk5885@gmail.com>2013-07-01 16:16:08 -0500
committerGregory Kick <gk5885@gmail.com>2013-07-01 16:16:08 -0500
commit5792909d3cacb3a5c206d597e9b2ba3ad8a97541 (patch)
tree690ead87983da7d68e4253debcfae6d8cb2ea379 /README.md
parent976da3ef3fb6bb8be804ec59e0a4560e134a808c (diff)
downloadauto-5792909d3cacb3a5c206d597e9b2ba3ad8a97541.tar.gz
Finish up the first draft.
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 9cb6c2c4..d746ee84 100644
--- a/README.md
+++ b/README.md
@@ -6,9 +6,9 @@ A source code generator for JSR-330-compatible factories.
What is this?
-------------
-[Java][java] is full of [factories](http://en.wikipedia.org/wiki/Factory_method_pattern). They're mechanical, repetitive, typically untested and sometimes the source of subtle bugs. _Sounds like a job for robots!_
+[Java][java] is full of [factories](http://en.wikipedia.org/wiki/Factory_method_pattern). They're mechanical, repetitive, typically untested and sometimes the source of subtle bugs. _Sounds like a job for robots!_
-AutoFactory generates factories that can be used on their own or with [JSR-330](http://jcp.org/en/jsr/detail?id=330)-compatible [dependency injectors](http://en.wikipedia.org/wiki/Dependency_injection) from a simple annotation.
+AutoFactory generates factories that can be used on their own or with [JSR-330](http://jcp.org/en/jsr/detail?id=330)-compatible [dependency injectors](http://en.wikipedia.org/wiki/Dependency_injection) from a simple annotation. Any combination of parameters can either be passed through factory methods or provided to the factory at construction time. They can implement interfaces or extend abstract classes. They're what you would have written, but without the bugs.
Save time. Save code. Save sanity.
@@ -28,7 +28,7 @@ final class SomeClass {
this.depB = depB;
}
- …
+ // …
}
```