Package rocket.beans.rebind.beanreference

Examples of rocket.beans.rebind.beanreference.BeanReferenceImpl


    Checker.notNull("parameter:beanReference", beanReference);
    this.beanReference = beanReference;
  }

  protected BeanReferenceImpl createBeanReference() {
    return new BeanReferenceImpl() {
      @Override
      public String getId() {
        return NestedBean.this.getId();
      }
View Full Code Here


  protected BeanReference visitBeanReference(final Element element) {
    final BeanReferenceTag tag = new BeanReferenceTag();
    tag.setElement(element);
    tag.setPlaceHolderResolver(this.getPlaceHolderResolver());

    final BeanReferenceImpl beanReference = new BeanReferenceImpl();
    beanReference.setFilename(this.getFilename());
    beanReference.setGeneratorContext(this.getGenerator().getGeneratorContext());
    beanReference.setId(tag.getId());

    return beanReference;
  }
View Full Code Here

TOP

Related Classes of rocket.beans.rebind.beanreference.BeanReferenceImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.