Package buri.ddmsence.util

Examples of buri.ddmsence.util.LazyList


    /**
     * Builder accessor for the processingInfos
     */
    public List<ProcessingInfo.Builder> getProcessingInfos() {
      if (_processingInfos == null)
        _processingInfos = new LazyList(ProcessingInfo.Builder.class);
      return _processingInfos;
    }
View Full Code Here


    /**
     * Builder accessor for the streets
     */
    public List<String> getStreets() {
      if (_streets == null)
        _streets = new LazyList(String.class);
      return _streets;
    }
View Full Code Here

    /**
     * Builder accessor for the streets
     */
    public void setStreets(List<String> streets) {
      _streets = new LazyList(streets, String.class);
    }
View Full Code Here

    /**
     * Builder accessor for the requesterInfos
     */
    public List<RequesterInfo.Builder> getRequesterInfos() {
      if (_requesterInfos == null)
        _requesterInfos = new LazyList(RequesterInfo.Builder.class);
      return _requesterInfos;
    }
View Full Code Here

    /**
     * Builder accessor for the addressees
     */
    public List<Addressee.Builder> getAddressees() {
      if (_addressees == null)
        _addressees = new LazyList(Addressee.Builder.class);
      return _addressees;
    }
View Full Code Here

    /**
     * Builder accessor for the affiliations
     */
    public List<String> getAffiliations() {
      if (_affiliations == null)
        _affiliations = new LazyList(String.class);
      return _affiliations;
    }
View Full Code Here

    /**
     * Builder accessor for the affiliations
     */
    public void setAffiliations(List<String> affiliations) {
      _affiliations = new LazyList(affiliations, String.class);
    }
View Full Code Here

    /**
     * Builder accessor for the links
     */
    public List<Link.Builder> getLinks() {
      if (_links == null)
        _links = new LazyList(Link.Builder.class);
      return _links;
    }
View Full Code Here

     * @param key the attribute name
     * @return the list of strings mapped to that attribute name
     */
    private List<String> getListAttribute(String key) {
      if (getListAttributes().get(key) == null)
        getListAttributes().put(key, new LazyList(String.class));
      return (getListAttributes().get(key));
    }
View Full Code Here

     *
     * @param key the attribute name
     * @param value the list to save, which will be wrapped in a lazy list
     */
    private void setListAttribute(String key, List<String> value) {
      getListAttributes().put(key, new LazyList(value, String.class));
    }
View Full Code Here

TOP

Related Classes of buri.ddmsence.util.LazyList

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.