Revision: 1378
Author: sberlin
Date: Thu Nov 18 18:47:30 2010
Log: a few more @sinces.
http://code.google.com/p/google-guice/source/detail?r=1378

Modified:
 /trunk/core/src/com/google/inject/spi/ConvertedConstantBinding.java
 /trunk/core/src/com/google/inject/spi/TypeConverterBinding.java
/trunk/extensions/throwingproviders/src/com/google/inject/throwingproviders/CheckedProvider.java

=======================================
--- /trunk/core/src/com/google/inject/spi/ConvertedConstantBinding.java Thu Nov 18 18:33:32 2010 +++ /trunk/core/src/com/google/inject/spi/ConvertedConstantBinding.java Thu Nov 18 18:47:30 2010
@@ -36,6 +36,8 @@

   /**
    * Returns the type converter binding used to convert the constant.
+   *
+   * @since 3.0
    */
   TypeConverterBinding getTypeConverterBinding();

=======================================
--- /trunk/core/src/com/google/inject/spi/TypeConverterBinding.java Thu Nov 18 18:33:32 2010 +++ /trunk/core/src/com/google/inject/spi/TypeConverterBinding.java Thu Nov 18 18:47:30 2010
@@ -36,6 +36,7 @@
   private final Matcher<? super TypeLiteral<?>> typeMatcher;
   private final TypeConverter typeConverter;

+  /** @since 3.0 */
public TypeConverterBinding(Object source, Matcher<? super TypeLiteral<?>> typeMatcher,
       TypeConverter typeConverter) {
     this.source = checkNotNull(source, "source");
=======================================
--- /trunk/extensions/throwingproviders/src/com/google/inject/throwingproviders/CheckedProvider.java Wed Nov 17 06:27:41 2010 +++ /trunk/extensions/throwingproviders/src/com/google/inject/throwingproviders/CheckedProvider.java Thu Nov 18 18:47:30 2010
@@ -31,6 +31,8 @@
* <p>When this type is bound using {...@link ThrowingProviderBinder}, the value returned * or exception thrown by {...@link #get} will be scoped. As a consequence, {...@link #get}
  * will invoked at most once within each scope.
+ *
+ * @since 3.0
  */
 public interface CheckedProvider<T> {
   T get() throws Exception;

--
You received this message because you are subscribed to the Google Groups 
"google-guice-dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-guice-dev?hl=en.

Reply via email to