Package rocket.beans.rebind.list

Examples of rocket.beans.rebind.list.ListValue


  protected ListValue visitList(final Element element) {
    final ListTag tag = new ListTag();
    tag.setElement(element);
    tag.setPlaceHolderResolver(this.getPlaceHolderResolver());

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

TOP

Related Classes of rocket.beans.rebind.list.ListValue

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.