- 81791c7 Removed old Javadocs by sberlin@gmail.com · 14 years ago
- dfee9fd issue 531 -- don't let c.g.i.internal.util reference outside its package. by sberlin · 14 years ago
- f712ffd make sure MembersInjector dependencies don't blow up on requireExplicitBindings. by sberlin · 14 years ago
- 7f6067d Update test to make sure custom @Nullable annotations work, in addition to c.g.i.i.util.Nullable. by sberlin · 14 years ago
- 94a6855 Jesse's suggestion for fixing Nullability -- check the String just for name=="Nullable", but add class==Nullable.class to catch the jarjar'd c.g.i.i.util.Nullable. by sberlin · 14 years ago
- 982f83e fix Nullability to check for "$Nullable" (the jarjar renamed "Nullable"), and fix jarjar to build using asm-3.3 (it was using 3.1, and using 3.3 fixes http://code.google.com/p/jarjar/issues/detail?id=21, where annotations on methods that are remapped are loss) by sberlin · 14 years ago
- 6f0aee6 move @nullable to internal.util by sberlin · 14 years ago
- 6e37096 issue 16. hide internal things (that can be hidden). need to followup to limit visibility on internal things that need to stay pseudo-open and really close the rest. by sberlin · 14 years ago
- 23a7f0f rm echo. by sberlin · 14 years ago
- e08af47 fix javadoc bootclasspath so that it references ${java.home}, which is set by every ant dist, instead of ${javahome} which may not be set. by sberlin · 14 years ago
- b02627d issue 407 -- better error messaging for failed interception. previously exploded with a ComputationException, now uses a ConfigurationException with a good msg. by sberlin · 14 years ago
- 6542fdb issue 553 -- add a mention in the javadoc of MapBinder & Multibinder that the Set & Map are unmodifiable. by sberlin · 14 years ago
- 103af50 update extension package-info.java files to reference 3.0 instead of 2.0, also fix issue 563 -- assistedinject package-info referenced the wrong jar name. by sberlin · 14 years ago
- 2ef2266 issue 428 - better error validation for AssistedInject, specifically with public factories & non-public method return types that can lead to IllegalAccessErrors. by sberlin · 14 years ago
- ede7731 issue 496 -- ConstantBindingBuilder was missing to(byte), forgot to commit test. by sberlin · 14 years ago
- ebaa152 issue 496 -- ConstantBindingBuilder was missing to(byte). by sberlin · 14 years ago
- 09ab5f9 issue 477 - fix Scopes.isSingleton to navigate through exposed private elements. by sberlin · 14 years ago
- ee446ca update ThrowingProvider to support an @ThrowingProvides annotation, much like @Provides. update the internals of the class to give more explicit error messaging & use bind.addError instead of throwing exceptions. added lots & lots of tests. by sberlin · 14 years ago
- 1d0f816 issue 446 -- InternalContext.setDependency was returning the current, not previous, dependency. by sberlin · 14 years ago
- 0009005 Add CI details by mcculls · 14 years ago
- ec49188 Update grid profile by mcculls · 14 years ago
- 8815358 Add grid profile by mcculls · 14 years ago
- bc7e150 Issue 552: add buildable maven poms by mcculls · 14 years ago
- ac4cdbe Issue 561: fix no_aop build by munging away all aop-related references by mcculls · 14 years ago
- 244e590 Issue 554: don't include the ant runtime on the build classpath by mcculls · 14 years ago
- f8d74d6 Issue 555: add missing guice-persist tasks by mcculls · 14 years ago
- 8d7338e Current build targets Java5 but String.isEmpty() is Java6 only, so change this check to use String.length() instead by mcculls · 14 years ago
- 74d714c Issue 552: (step 1) move core code to its own subdirectory by mcculls · 14 years ago
- 97adab5 Tentative fix for string index out of bounds exception in issue #560 by dhanji · 14 years ago
- 3cd00c8 by dhanji · 14 years ago
- cd505b6 Maven atom build file for Guice core. by dhanji · 14 years ago
- 2873555 flip the order of the type parameters in ProviderWithExtensionVisitor to match the order in the BindingTargetVisitor. by sberlin · 14 years ago
- 4b91955 patch from ramakrishna (with very minor changes from me) for an extension SPI for assisted inject. by sberlin · 14 years ago
- 5ac45a8 update ThrowingProviders to implement HasDependencies and use getProvider instead of injecting the Injector. by sberlin · 14 years ago
- 589e448 convert {@literal<} to < by sberlin · 14 years ago
- 8c3fbfb Use local API XML files rather than jessewilson's private copies by limpbizkit@gmail.com · 14 years ago
- b5beefa Use local API XML files rather than jessewilson's private copies by limpbizkit@gmail.com · 14 years ago
- 2d97240 Sync javadoc to latest-javadoc/ by limpbizkit@gmail.com · 14 years ago
- 8af53c9 Sync javadoc to latest-javadoc/ by limpbizkit@gmail.com · 14 years ago
- 766a9be Added updated Javadocs. by limpbizkit@gmail.com · 14 years ago
- f047127 Removed old Javadocs. by limpbizkit@gmail.com · 14 years ago
- ca7e23d Removed old Javadocs. by limpbizkit@gmail.com · 14 years ago
- 20e7cd8 Rebuild guice 2.0 API spec to include spring by limpbizkit@gmail.com · 14 years ago
- 60dd494 update to use checked in ant script by limpbizkit@gmail.com · 14 years ago
- 5712e3f update to use checked in ant script by limpbizkit@gmail.com · 14 years ago
- 011d7c4 Checkin Doclava build changes. by limpbizkit@gmail.com · 14 years ago
- b57598f New assests for new Javadoc by limpbizkit@gmail.com · 14 years ago
- 12ed833 New Javadoc snapshot. by limpbizkit@gmail.com · 14 years ago
- 9f9a90f Updating Guice Javadoc. by limpbizkit@gmail.com · 14 years ago
- 2a031c0 fix issue 544 -- allow ServletModules to be reused w/o reconstructing new ones. also fixes a bug where a ServletModule that contained only filters would have run each filter twice if the module was being reused (or three times if it was being used a third time, etc..). thanks to mathiue.carbou for pointing out the problem. by sberlin · 14 years ago
- 9ae3c2d add toString impls to each servletmodule binding. by sberlin · 14 years ago
- b199afd new AssistedInject factories now implement HasDependencies (like the old assistedinject factories) by sberlin · 14 years ago
- b8d2574 Comment wording changed. by dhanji · 14 years ago
- 0693a15 Support for custom request scopes overloaded onto the @RequestScoped annotation. by dhanji · 14 years ago
- 75fcf6f issue 539 - extension SPI for Multibinder/MapBinder. by sberlin · 14 years ago
- e511cf4 remove unused imports. by sberlin · 14 years ago
- aab9eba if dependencies aren't calculated for Multibinder yet, return a dependency on Injector.class instead of null. by sberlin · 14 years ago
- 7b02561 remove non-existent directory from build file, issue 520. by sberlin · 14 years ago
- 2ee4f18 Fixed a small bug in the async service multi-threaded test. by dhanji · 14 years ago
- 4ccf2a3 Minor cleanups, removing some debug stuff that snuck into the previous commit. by dhanji · 14 years ago
- 65888c0 Service API extension initial checkin. Support for basic start/stop lifecycle and parallelizing service startup. Needs more integration tests. by dhanji · 14 years ago
- 190e95c fixed ant build by changing persist build.properties & build.xml to mirror other extensions. by sberlin · 14 years ago
- f47f05e style cleanups from jessewilson review. by sberlin · 14 years ago
- 7154895 Fix singletons to be eager as intended. by limpbizkit@gmail.com · 14 years ago
- 10925e4 sberlin review for the previous CL. by dhanji · 14 years ago
- 7ebe5f6 More tests for the continuing request idiom. by dhanji · 14 years ago
- 1848a29 Early support for thread-continuation of servlet request. by dhanji · 14 years ago
- 24f5f13 Remove support for com.google.inject annotations from miniguice. Relying on JSR-330 classes only is simpler, and aligned with the goals for the project. by limpbizkit@gmail.com · 14 years ago
- 150d2a9 Dynamic finders fixed and test added. Probably want a few more tests and early-error checking to be ideal, but otherwise working as advertised. =) by dhanji · 14 years ago
- 8a02fce Final cleanup of Persist Module. Pending a sanity check of the dynamic finder API, it is now ready to ship for Guice 3! by dhanji · 14 years ago
- 539456d Deleting Lifecycle extension. by dhanji · 14 years ago
- 70248ea MiniGuice, a proof of concept. by limpbizkit@gmail.com · 14 years ago
- 9bcb0a2 more build configuration fixes by limpbizkit@gmail.com · 14 years ago
- 52f0fa5 Missing jars for guice-persist by dhanji · 14 years ago
- a547723 Adjust IntelliJ metadata for moved projects. by limpbizkit@gmail.com · 14 years ago
- 1d58f43 Complete reworking of the guice-persist module and API. It is MUCH leaner now and easily facilitates multiple modules. All legacy tests are still passing. by dhanji · 14 years ago
- 2b0a55c Generating docs with doclava (beta) by limpbizkit@gmail.com · 14 years ago
- b66dca8 Generating docs with doclava (beta) by limpbizkit@gmail.com · 14 years ago
- b1fa81f fix requireExplicitBindings so TypeLiteral<T> can be injected. by sberlin@gmail.com · 14 years ago
- 4295916 Changing Guice Javadoc to build with Doclava (beta) by limpbizkit@gmail.com · 14 years ago
- dfb0e05 Changing Guice Javadoc to build with Doclava (beta) by limpbizkit@gmail.com · 14 years ago
- 5481556 Changing Guice Javadoc to build with Doclava (beta) by limpbizkit@gmail.com · 14 years ago
- 5763be9 Changing Guice Javadoc to build with Doclava (beta) by limpbizkit@gmail.com · 14 years ago
- 433fefc Changing Guice Javadoc to build with Doclava (beta) by limpbizkit@gmail.com · 14 years ago
- fa38c2b Changing Guice Javadoc to build with Doclava (beta) by limpbizkit@gmail.com · 14 years ago
- 17520da Changing Guice Javadoc to build with Doclava (beta) by limpbizkit@gmail.com · 14 years ago
- 75ae834 Changing Guice Javadoc to build with Doclava (beta) by limpbizkit@gmail.com · 14 years ago
- 99ca2d6 update parameter names to reflect what they are. by sberlin · 14 years ago
- b4b7f72 issue 524 part 2 -- add an SPI to the servlet extension to be able to introspect on its bindings. by sberlin · 14 years ago
- 156b82c issue 524 part 1 -- add support in core guice for extensions to be visited with a custom SPI. by sberlin · 14 years ago
- f8537ea move extensions that weren't under extensions/ into that directory. simplify paths so everything is uniform for extensions. by sberlin · 14 years ago
- a9cdba0 Fixes many persist tests to use Junit assertXXX rather than JDK assert statements. Also cleans up some of the persist javadoc. by dhanji · 14 years ago
- 1a2adcb remove additional API for overriding a PrivateModule and instead fold the functionality into the existing methods. by sberlin · 14 years ago
- b085238 issue 525 - update poms to guice 3.0. patch courtesy of max bowsher, thanks! by sberlin · 14 years ago
- 255af73 Merge 2.0-maven branch into trunk. by sberlin@gmail.com · 14 years ago
- aef524a part of issue 526 -- move MoreTypes.memberKey into LineNumbers. LineNumbers was its only use, and the way LineNumbers used it, it was heavily dependent on the implementation staying the same (one area constructed its own key to insert into a hash map, and another area used the method to reconstruct & retrieve from the map). by sberlin · 14 years ago
- 9a27703 move Functions to internal/util. it was missed during the initial sweep in r1185. by sberlin · 14 years ago
- 19873c5 minor cleanups of r1195 - put tests in existing OverrideModuleTest class, bind with a binder that has the PrivateElement's source. by sberlin · 14 years ago
- 32895a4 issue 528 - if a single PrivateModule is supplied to Modules.override, allow the private elements within the module to be overridden. by sberlin · 14 years ago
- 8adf4d5 remove empty directories by sberlin@gmail.com · 14 years ago