1. b1d8ab4 Changed ErrorHandler so that it's now safe to cache a reference to the ErrorHandler that can be used at both config time and runtime. Previously some classes needed to get the errorHandler via the Injector, since the errorHandler changed during construction. by limpbizkit · 16 years ago
  2. 4d70252 I inadvertently passed the wrong source in the compile-time refactoring. by limpbizkit · 16 years ago
  3. 06c3fee Fix the FastClassByGuice LineNumbers problem by using the natural constructor rather than the synthetic one when generating LineNumbers. by limpbizkit · 16 years ago
  4. 95e433b This test demonstrates that Guice falls over itself while trying to load the bytecode for a class it generated itself. by limpbizkit · 16 years ago
  5. 150d677 Changed Logger binding: by limpbizkit · 16 years ago
  6. 67044a6 Fixing compile problems in r438, rearranging Reflection code by limpbizkit · 16 years ago
  7. 8b23745 Fixing compile problems in r438, rearranging Reflection code by limpbizkit · 16 years ago
  8. 2b93168 Fixing LoggerInjection by limpbizkit · 16 years ago
  9. 6c05295 Fixing NullableInjectionPointTest by changing the expected behaviours of the tests. We now forbid bind(...).toInstance(null) but allow Injector.getInstance() to return null. by limpbizkit · 16 years ago
  10. 5828a22 Tweaking the code generator to do imports and qualified names properly. by limpbizkit · 16 years ago
  11. 916f548 adding first pass of compile-time guice. Also moving stuff to internal to make ConstructionProxy and Reflection classes available there. by limpbizkit · 16 years ago
  12. fca4c10 Another bug. I'm not sure if this is a regression, but we should be able to discover this problem statically by limpbizkit · 16 years ago
  13. d172726 Rolling back r432 by dan.halem · 16 years ago
  14. 66d900f Add installAsSubModule to Binder and everything that goes with it. This is a solution to the robot arms/legs problem and builds on the earlier parent injector work. by dan.halem · 16 years ago
  15. 9b0be9f Fixed the Implicit bindings for parameterized types bug by limpbizkit · 16 years ago
  16. c6a58b2 Regression in support for implicit bindings of parameterized types. by limpbizkit · 16 years ago
  17. c878481 Unifying unique annotations, used for creating unique keys by limpbizkit · 16 years ago
  18. e39d8d8 Unifying unique annotations, used for creating unique keys by limpbizkit · 16 years ago
  19. 0197f9d Fixing a bug in the unique annotation in throwingproviderbinder by limpbizkit · 16 years ago
  20. 124bce6 I haven't fixed the bind out-of-order problem, but I have constrainted it to a much more limited set. by limpbizkit · 16 years ago
  21. f44e9cc I haven't fixed the bind out-of-order problem, but I have constrainted it to a much more limited set. by limpbizkit · 16 years ago
  22. 7f8eda0 Moving commands from extensions into core. I left InterceptingBinderBuilder in the commands package, I can probably rename this to the 'intercepting' package or similar. by limpbizkit · 16 years ago
  23. a665a83 Now with a test for overridden implicit bindings by limpbizkit · 16 years ago
  24. 867fba4 Fixing the Provider injection bug, wherein we were using a Provider before it had been itself injected. by limpbizkit · 17 years ago
  25. 51515b5 Fixing the Provider injection bug, wherein we were using a Provider before it had been itself injected. by limpbizkit · 17 years ago
  26. 3d58d6b Big change - changing BinderImpl to use commands/ by limpbizkit · 17 years ago
  27. 947540b Adding a binding to the set of intercepted keys. This is so that InjectionController can fail on a mismatched substitute. by limpbizkit · 17 years ago
  28. 32a845d Moving InjectionController out... by limpbizkit · 17 years ago
  29. 195e8eb Moving InjectionController out... by limpbizkit · 17 years ago
  30. 5d18743 Adds support for a parent injector that bindings will be chained to if available. by dan.halem · 17 years ago
  31. 08624a5 visitable --> commands by limpbizkit · 17 years ago
  32. 6c0feb5 Patching in David Baker's fix for AssistedInject - now it works with implicit bindings by limpbizkit · 17 years ago
  33. 5741fb8 Patching in David Baker's fix for AssistedInject - now it works with implicit bindings by limpbizkit · 17 years ago
  34. 33a24ea Adding AllTests file by limpbizkit · 17 years ago
  35. a3c363d Adding commands module by limpbizkit · 17 years ago
  36. 0682897 Missing copyright statement by limpbizkit · 17 years ago
  37. a4a7414 Renamed 'visitable' to 'commands' by limpbizkit · 17 years ago
  38. d4b1bf7 Renamed 'visitable' to 'commands' by limpbizkit · 17 years ago
  39. d79f5b7 commands to visitable by limpbizkit · 17 years ago
  40. a67e39f visitable to commands by limpbizkit · 17 years ago
  41. c519952 Tweaked API for CommandReplayer by limpbizkit · 17 years ago
  42. a171692 More test coverage, especially for InterceptingInjectorBuilder. by limpbizkit · 17 years ago
  43. 338597b Latest API tweaks on Recorder, Replayer by limpbizkit · 17 years ago
  44. 4e4b3e6 Renaming VisitableBinder to CommandRecorder, by limpbizkit · 17 years ago
  45. 900c0ea Renaming VisitableBinder to CommandRecorder, by limpbizkit · 17 years ago
  46. 4e626f7 Further cleanup by limpbizkit · 17 years ago
  47. 58749f8 Simplifying bindCommand by limpbizkit · 17 years ago
  48. 3e2530f Finishing the tests for VisitableBinder (which found one bug, getProvider() wasn't recorded propertly) by limpbizkit · 17 years ago
  49. bf5d227 Visitable binder + build by limpbizkit · 17 years ago
  50. a02cd90 First draft of visitablebinder. This is an alternate implementation of binder() that builds an ADT of the module's bindings, which can be introspected on and manipulated independently of an Injector. by limpbizkit · 17 years ago
  51. a39bbc0 Added assistedinject, throwing providers modules by limpbizkit · 17 years ago
  52. b1c5669 Added a test for the order of provider injection vs. access by limpbizkit · 17 years ago
  53. 0c43f22 Javadoc and build file fixes for extensions. by limpbizkit · 17 years ago
  54. e451ef7 Adding AssistedInject and ThrowingProviders as Guice extensions. by limpbizkit · 17 years ago
  55. b35883d Error messaging test cases: by limpbizkit · 17 years ago
  56. 49c877e Fixing up tests for null... by limpbizkit · 17 years ago
  57. 42025a0 A test case that shows how binding out-of-order is now broken in some situations in Guice... by limpbizkit · 17 years ago
  58. fcf2b8c Renaming ExternalContext to InjectionPoint, and changing how it's used in ProvisionException. Also changing LoggerProvider to LoggerFactory. by limpbizkit · 17 years ago
  59. cbd5ee0 Adding a test for bug 155. This fails in Guice 1.0 but works in the current code. by limpbizkit · 17 years ago
  60. ea4f65b Adding a test for bug 155. This fails in Guice 1.0 but works in the current code. by limpbizkit · 17 years ago
  61. 64f7e00 Added missing synchronized. by crazyboblee · 17 years ago
  62. ddd538d Renamed sanitize to checkForNull. by crazyboblee · 17 years ago
  63. 9212e25 Disabled serialVersionUID warnings in IntelliJ. No more warnings\! by crazyboblee · 17 years ago
  64. d9d16a0 Support for Iterable<? extends Module>. by crazyboblee · 17 years ago
  65. fb6285a Cleaned up remaining warnings. by crazyboblee · 17 years ago
  66. ec2ef00 Records 'unknown source' for internal converters. by crazyboblee · 17 years ago
  67. d273210 One last tweak to TypeConverter. by crazyboblee · 17 years ago
  68. 18f06bc Modified TypeConverter to take TypeLiteral instead of Key. by crazyboblee · 17 years ago
  69. 7c9d779 Added support for custom type converters. by crazyboblee · 17 years ago
  70. 5dc2335 Relaxed restrictions on what you can bind to. by crazyboblee · 17 years ago
  71. c7f3216 Fixed infinite recursion in Injector.toString(). by crazyboblee · 17 years ago
  72. d71c19e Exposed binding dependencies. You should now be able to crawl the entire dependency graph. by crazyboblee · 17 years ago
  73. 5d57569 Fixes bug with cyclic deps in explicit bindings. by crazyboblee · 17 years ago
  74. 552472f Added Binding.getProviderBinding() by crazyboblee · 17 years ago
  75. f35089a Fixed breakage. Removed unnecessary binding. by crazyboblee · 17 years ago
  76. 712705c HUGE refactoring of InjectorImpl. getBinding() now returns synthetic bindings in addition to explicit bindings. No more warnings in InjectorImpl!!! by crazyboblee · 17 years ago
  77. dbcc2d4 Renamed ProviderBinding to LinkedProviderBinding by crazyboblee · 17 years ago
  78. 4f215c0 Provided examples for binding interfaces. by crazyboblee · 17 years ago
  79. c731a75 Added updated Javadocs. by crazyboblee · 17 years ago
  80. e49c3dd Removed old Javadocs. by crazyboblee · 17 years ago
  81. d0c4b8b Extended Binding to better support tools. Fixed bug where we were ignoring exceptions during member injection. Added TOOL stage. by crazyboblee · 17 years ago
  82. c49e091 Updated ReferenceMap to the latest version. by crazyboblee · 17 years ago
  83. adae8cc Removing Objects.nonNull(Object[]) by limpbizkit · 17 years ago
  84. b946ca2 Introducing the idea of a stack of ExternalContexts. by limpbizkit · 17 years ago
  85. 1dabcfd Trying to preserve the getCause() of ProvisionException to be the user's exception by limpbizkit · 17 years ago
  86. c808df0 Now we can inject null wherever the injection point is annotated @Nullable by limpbizkit · 17 years ago
  87. 3ea63ff Updated Spring to 2.0.6. Added concurrent performance test. by crazyboblee · 17 years ago
  88. de02df2 tiny tweaks to proposed new introspection API by kevinb9n · 17 years ago
  89. dde697b Issue 29: preliminary draft of new introspection API by kevinb9n · 17 years ago
  90. 3650081 Issue 87: simple Providers.of(instance) method to facilitate your unit tests by kevinb9n · 17 years ago
  91. cad2c2b very minor javadoc tweeks by kevinb9n · 17 years ago
  92. 9fd9fe6 very minor javadoc tweeks by kevinb9n · 17 years ago
  93. 0bad03b remove some irrelevant things from the .ipr file by kevinb9n · 17 years ago
  94. 81303cd Added a rough implementation of provider methods. Got rid of ProviderLocator. by crazyboblee · 17 years ago
  95. 7bef622 Added ability to look up providers before the injector is created. You cannot use the provider until the injector is created, and you will get a by crazyboblee · 17 years ago
  96. e148102 @Inject should be @Documented by kevinb9n · 17 years ago
  97. ade7be4 (thanks dhalem!) Issue 76: Matchers.annotatedWith() should require annotation to have runtime retention by kevinb9n · 17 years ago
  98. a0f4705 don't reinstall modules that are equal by kevinb9n · 17 years ago
  99. da11d0d Issue 82: improve toString() of bundled scopes by kevinb9n · 17 years ago
  100. 9da90b3 Issue 86: don't try to construct an inner class ferchrissakes. by kevinb9n · 17 years ago