Package rocket.beans.rebind.set

Examples of rocket.beans.rebind.set.SetValue


  protected SetValue visitSet(final Element element) {
    final SetTag tag = new SetTag();
    tag.setElement(element);
    tag.setPlaceHolderResolver(placeHolderResolver);

    final SetValue set = new SetValue();
    final List<Value> elements = this.visitValues(tag.getValues());
    set.setElements(elements);
    set.setFilename(this.getFilename());
    set.setGeneratorContext(this.getGenerator().getGeneratorContext());
    return set;
  }
View Full Code Here

TOP

Related Classes of rocket.beans.rebind.set.SetValue

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.