Package buri.ddmsence.util

Examples of buri.ddmsence.util.LazyList


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


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

    /**
     * Builder accessor for the values
     */
    public List<IndividualValue.Builder> getIndividualValues() {
      if (_individualValues == null)
        _individualValues = new LazyList(IndividualValue.Builder.class);
      return _individualValues;
    }
View Full Code Here

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

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

    /**
     * Builder accessor for the acquiredOn dates
     */
    public List<ApproximableDate.Builder> getAcquiredOns() {
      if (_acquiredOns == null)
        _acquiredOns = new LazyList(ApproximableDate.Builder.class);
      return _acquiredOns;
    }
View Full Code Here

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

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

    /**
     * Builder accessor for the values
     */
    public List<ProfileValue.Builder> getProfileValues() {
      if (_profileValues == null)
        _profileValues = new LazyList(ProfileValue.Builder.class);
      return _profileValues;
    }
View Full Code Here

    /**
     * Builder accessor for the taskingInfos
     */
    public List<TaskingInfo.Builder> getTaskingInfos() {
      if (_taskingInfos == null)
        _taskingInfos = new LazyList(TaskingInfo.Builder.class);
      return _taskingInfos;
    }
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.