Java 类com.google.inject.binder.AnnotatedConstantBindingBuilder 实例源码

项目:violet    文件:ForwardingBinder.java   
@Override
default AnnotatedConstantBindingBuilder bindConstant() {
  return this.binder().bindConstant();
}
项目:salta    文件:BinderImpl.java   
@Override
public AnnotatedConstantBindingBuilder bindConstant() {
    return new AnnotatedConstantBindingBuilderImpl(delegate.bindConstant());
}
项目:salta    文件:AbstractModule.java   
/**
 * @see Binder#bindConstant()
 */
protected AnnotatedConstantBindingBuilder bindConstant() {
    return binder().bindConstant();
}
项目:google-gin    文件:AnnotatedConstantBindingBuilderAdapter.java   
public AnnotatedConstantBindingBuilderAdapter(
    AnnotatedConstantBindingBuilder guiceBuilder) {
  this.guiceBuilder = guiceBuilder;
}
项目:guice    文件:PrivateModule.java   
/** @see Binder#bindConstant() */
protected final AnnotatedConstantBindingBuilder bindConstant() {
  return binder().bindConstant();
}
项目:guice    文件:Binder.java   
/** See the EDSL examples at {@link Binder}. */
AnnotatedConstantBindingBuilder bindConstant();
项目:guice    文件:Elements.java   
@Override
public AnnotatedConstantBindingBuilder bindConstant() {
  return new ConstantBindingBuilderImpl<Void>(this, elements, getElementSource());
}
项目:guice    文件:AbstractModule.java   
/** @see Binder#bindConstant() */
protected AnnotatedConstantBindingBuilder bindConstant() {
  return binder().bindConstant();
}
项目:guice-old    文件:PrivateModule.java   
/**
 * @see Binder#bindConstant()
 */
protected final AnnotatedConstantBindingBuilder bindConstant() {
  return binder().bindConstant();
}
项目:guice-old    文件:Elements.java   
public AnnotatedConstantBindingBuilder bindConstant() {
  return new ConstantBindingBuilderImpl<Void>(this, elements, getElementSource());
}
项目:guice-old    文件:AbstractModule.java   
/**
 * @see Binder#bindConstant()
 */
protected AnnotatedConstantBindingBuilder bindConstant() {
  return binder().bindConstant();
}
项目:google-guice    文件:PrivateModule.java   
/**
 * @see Binder#bindConstant()
 */
protected final AnnotatedConstantBindingBuilder bindConstant() {
  return binder().bindConstant();
}
项目:google-guice    文件:Elements.java   
public AnnotatedConstantBindingBuilder bindConstant() {
  return new ConstantBindingBuilderImpl<Void>(this, elements, getSource());
}
项目:google-guice    文件:AbstractModule.java   
/**
 * @see Binder#bindConstant()
 */
protected AnnotatedConstantBindingBuilder bindConstant() {
  return binder().bindConstant();
}
项目:yar    文件:RegistryBinderImpl.java   
@Override
public AnnotatedConstantBindingBuilder bindConstant() {
    return binder.bindConstant();
}
项目:salta    文件:Binder.java   
/**
 * See the EDSL examples at {@link Binder}.
 */
AnnotatedConstantBindingBuilder bindConstant();
项目:guice-old    文件:Binder.java   
/**
 * See the EDSL examples at {@link Binder}.
 */
AnnotatedConstantBindingBuilder bindConstant();
项目:google-guice    文件:Binder.java   
/**
 * See the EDSL examples at {@link Binder}.
 */
AnnotatedConstantBindingBuilder bindConstant();