1. 0dfec97 Moved servlet package into its own module. by crazyboblee · 17 years ago
  2. c3e8849 If we can't find a binding to an annotation with given attribute values, we look for a binding to the annotation type. Added check to make sure binding annotations are annotated with @BindingAnnotation. by crazyboblee · 17 years ago
  3. 77bf3b2 We now inject bound instances and bound Provider instances. by crazyboblee · 17 years ago
  4. 1fc4978 Extracted interface for Binding. by crazyboblee · 17 years ago
  5. 6b0e91b Fixed package documentation to not reference Factory. by crazyboblee · 17 years ago
  6. 589b57d Replace Factory with Provider. Hid Context from public API. by crazyboblee · 17 years ago
  7. bd9544e Renamed Locator to Provider. by crazyboblee · 17 years ago
  8. 0b3189c Added support for injecting private constructors and fields. by crazyboblee · 17 years ago
  9. 0f09fe3 Added checks to ensure annotations are retained at runtime. by crazyboblee · 17 years ago
  10. 97b2cac Added @ScopeAnnotation. Added Binder.addError(). Removed Scopes.DEFAULT. We now refer to this as 'no' scope. by crazyboblee · 17 years ago
  11. 9119a63 improve error message when instance location causes an exception (e.g. from your constructor or custom factory) by kevinb9n · 17 years ago
  12. be2a67f Added Binder.getStage(). Added Matchers.annotatedWith(Annotation). Added support for generic arrays to TypeLiteral. by crazyboblee · 17 years ago
  13. 714af36 Upgraded to Spring 2.0.2. by crazyboblee · 17 years ago
  14. 5c64e9f Fixed bug in toInstance(). It should not set a scope. by crazyboblee · 17 years ago
  15. bbc3bae Modified build to not include @author in Javadocs. by crazyboblee · 17 years ago
  16. 472157c Added updated Javadocs. by crazyboblee · 17 years ago
  17. d0e4b30 Removed old Javadocs. by crazyboblee · 17 years ago
  18. 0bfdbc6 Removed convenience methods from Container. Broke down BindingBuilder into multiple interfaces to limit which methods can be called at which times. Filled in missing Javadocs. Synced AbstractModule with Binder. Added code to detect optional=true on constructors. Created Struts 2 modules and got that code working again. Modified CreationException to record stack trace. by crazyboblee · 17 years ago
  19. e68b38e Added updated Javadocs. by crazyboblee · 17 years ago
  20. b495b7b Removed old Javadocs. by crazyboblee · 17 years ago
  21. 9d573ed Hid BinderImpl. Redesigned SoureProvider API. by crazyboblee · 17 years ago
  22. e5073a2 Guice.newContainer() -> createContainer() and overload to allow Stage to be specified. by kevinb9n · 17 years ago
  23. f9388af Added updated Javadocs. by kevinb9n · 17 years ago
  24. 9f6177b Removed old Javadocs. by kevinb9n · 17 years ago
  25. 2a7178f new javadoc for @Inject by kevinb9n · 17 years ago
  26. bf5b401 unbreak build from last change by kevinb9n · 17 years ago
  27. 132b82d forgot to make these classes nonpublic by kevinb9n · 17 years ago
  28. feacb1e revert inadvertent edit to uploadJavadocs.sh by kevinb9n · 17 years ago
  29. a933173 Added updated Javadocs. by kevinb9n · 17 years ago
  30. ed472d7 Removed old Javadocs. by kevinb9n · 17 years ago
  31. 5cbf55c extract interfaces for the sub-binders into a subpackage to keep them from being highly visible in the main javadoc. by kevinb9n · 17 years ago
  32. db85d9c ContainerBuilder -> BinderImpl; extract Binder interface; add Guice.newContainer(). by kevinb9n · 17 years ago
  33. c0c12ea @Binder -> @BindingAnnotation by kevinb9n · 17 years ago
  34. 225310e note a few un-test-covered todos in the code; remove a few unused methods; add missing test to test suite. by kevinb9n · 17 years ago
  35. dedcabd Added code to point to the first line in a class when we otherwise can't determine a line #. by crazyboblee · 17 years ago
  36. 9a3861b Cleaned up error handling. Separated ErrorHandler from source tracking. We now point directly to members when appropriate. by crazyboblee · 17 years ago
  37. 78b2b76 Added FactoryTest. Removed GeneratorTesy. by crazyboblee · 17 years ago
  38. 32af4a6 Added updated Javadocs. by crazyboblee · 17 years ago
  39. 6dd2a51 Removed old Javadocs. by crazyboblee · 17 years ago
  40. 0786a7b Renamed generate() to get(). by crazyboblee · 17 years ago
  41. 307f62c Added updated Javadocs. by crazyboblee · 17 years ago
  42. e8a7475 Removed old Javadocs. by crazyboblee · 17 years ago
  43. 69b36f8 Renamed Generator to Factory. by crazyboblee · 17 years ago
  44. 5746d5d Renamed ContainerCreationException to CreationException (shorter). Renamed Factory to Locator. by crazyboblee · 17 years ago
  45. 85d17c5 Renamed ContextualFactory to Generator. Disabed users from passing in Factory implementations. by crazyboblee · 17 years ago
  46. 2341837 Added updated Javadocs. by crazyboblee · 17 years ago
  47. 15c1527 Removed old Javadocs. by crazyboblee · 17 years ago
  48. 7379ee0 Added convenience methods for link(). by crazyboblee · 17 years ago
  49. 5e400d2 Prohibited binding to Factory<?>. by crazyboblee · 17 years ago
  50. db395b2 Add AbstractModule.intercept(). Hid Key.ofType() methods. Added support for injecting factories. by crazyboblee · 17 years ago
  51. 1b54d6a Made TypeLiteral equals() and hashCode() much more robust. by crazyboblee · 17 years ago
  52. b8b84f0 Renamed preload() to eagerly(). Added JMX to the Javadocs. by crazyboblee · 17 years ago
  53. d7908e8 Added a JMX interface to aid debugging. by crazyboblee · 17 years ago
  54. 3166586 Added updated Javadocs. by crazyboblee · 17 years ago
  55. 6f428d3 Removed old Javadocs. by crazyboblee · 17 years ago
  56. 278ee4d Renamed 'ForBinding' to 'Binder'. Introduced Stage. Added name package to Javadocs. Updated some random Javadocs. by crazyboblee · 17 years ago
  57. bc9a5b8 Removed broken imports. by crazyboblee · 17 years ago
  58. 66486ed Added updated Javadocs. by crazyboblee · 17 years ago
  59. e9b268f Removed old Javadocs. by crazyboblee · 17 years ago
  60. 91c37e3 Removed unused consts. by crazyboblee · 17 years ago
  61. b1f2e68 Modified scope binding to bind to scope annotations directly. No more strings. by crazyboblee · 17 years ago
  62. 1c4d3e3 Moved name-related logic into a subpackage. by crazyboblee · 17 years ago
  63. 4602a6f Added support for binding to annotations instead of names. by crazyboblee · 17 years ago
  64. a646edd Moved output directory back under the project dir to avoid permission problems. by crazyboblee · 17 years ago
  65. 7173353 Updated remaining Javadocs for query->matcher rename. Reformatted LineNumbers and added Chris's name to it (gotta give credit). Added asm-3.0.jar to IDEA project. by crazyboblee · 17 years ago
  66. 5374359 Made IntelliJ use '1.5' for project. by crazyboblee · 17 years ago
  67. dced7b7 Added updated Javadocs. by crazyboblee · 17 years ago
  68. 1cf97a2 Removed old Javadocs. by crazyboblee · 17 years ago
  69. 2d9cd0a Made IntelliJ use '1.5' for JDK. by crazyboblee · 17 years ago
  70. 4f79e40 Renamed query package to macher. by crazyboblee · 17 years ago
  71. 33ce069 Renamed Query to Matcher. The name is more intuitive, and hopefully it'll have the pleasant side effect of discouraging the use of regular expression matchers. by crazyboblee · 17 years ago
  72. 698a6c8 Added support for surrogate injection annotations. by crazyboblee · 17 years ago
  73. 920e1f9 remove dead code and add more javadoc by chris.nokleberg · 17 years ago
  74. 44372e2 throw exception if bytecode cannot be found by chris.nokleberg · 17 years ago
  75. 5db87c6 add utility to extract LineNumbers from bytecode by chris.nokleberg · 17 years ago
  76. 6b931bd Updated scoping logic to use surrogate annotations. by crazyboblee · 17 years ago
  77. 013aacd Added support for surrogate annotations. by crazyboblee · 17 years ago
  78. e4f8673 add javadoc link to JDK 5 apis by kevinb9n · 17 years ago
  79. 954d70d update idea project settings by kevinb9n · 17 years ago
  80. a389676 Added updated Javadocs. by crazyboblee · 17 years ago
  81. 9163ab3 Removed old Javadocs. by crazyboblee · 17 years ago
  82. 0789b19 Added support for implicit bindings. Did away with getCreator(). Made Struts plugin validate up front. by crazyboblee · 17 years ago
  83. 48d1307 Some work on unchecked warnings. by kevinb9n · 17 years ago
  84. ce79dfe Combined validation with constructor lookup and got rid of a volatile field check every time we create an object. by crazyboblee · 17 years ago
  85. f33d23e Refactored scope handling. Allows overriding annotations with in(). Improved error reporting. by crazyboblee · 17 years ago
  86. a99dca7 Silly code-style fixes by kevinb9n · 17 years ago
  87. 6a565c7 A little javadoc, and trying to get some IntelliJ warnings cleaned by kevinb9n · 17 years ago
  88. c50dab2 Added updated Javadocs. by crazyboblee · 17 years ago
  89. e09cad6 Removed old Javadocs. by crazyboblee · 17 years ago
  90. 10a3b02 Added intercept() to ContainerBuilder. Hid ConstructionProxy, ProxyFactory, etc. Removed intercept package. Added query package. Started Struts 2 plugin and example. by crazyboblee · 17 years ago
  91. 16d415d Upgraded jarjar and removed workaround. by crazyboblee · 17 years ago
  92. 5726c18 Unjar and re-jar to work around jarjar permissions issues. by crazyboblee · 17 years ago
  93. 4c68d34 Added more servlet unit tests. by crazyboblee · 17 years ago
  94. 2c09fe2 Added updated Javadocs. by crazyboblee · 17 years ago
  95. 7339492 Removed old Javadocs. by crazyboblee · 17 years ago
  96. 3a09e29 Added servlet scopes. by crazyboblee · 17 years ago
  97. fddb686 Renamed put() to scope(). by crazyboblee · 17 years ago
  98. 11a889b Added updated Javadocs. by crazyboblee · 17 years ago
  99. 4c66944 Removed old Javadocs. by crazyboblee · 17 years ago
  100. 6b5db11 Modified Guice to use different names for generated classes from stock cglib. by crazyboblee · 17 years ago