Package buri.ddmsence.util

Examples of buri.ddmsence.util.LazyList


    /**
     * Builder accessor for the coordinates
     */
    public List<Position.Builder> getPositions() {
      if (_positions == null)
        _positions = new LazyList(Position.Builder.class);
      return _positions;
    }
View Full Code Here


    /**
     * Builder accessor for the coordinates of the position
     */
    public List<Position.DoubleBuilder> getCoordinates() {
      if (_coordinates == null)
        _coordinates = new LazyList(Position.DoubleBuilder.class);
      return _coordinates;
    }
View Full Code Here

    /**
     * Builder accessor for the notices
     */
    public List<Notice.Builder> getNotices() {
      if (_notices == null)
        _notices = new LazyList(Notice.Builder.class);
      return _notices;
    }
View Full Code Here

    /**
     * Builder accessor for the keywords in this coverage.
     */
    public List<Keyword.Builder> getKeywords() {
      if (_keywords == null)
        _keywords = new LazyList(Keyword.Builder.class);
      return _keywords;
    }
View Full Code Here

    /**
     * Builder accessor for the categories in this coverage.
     */
    public List<Category.Builder> getCategories() {
      if (_categories == null)
        _categories = new LazyList(Category.Builder.class);
      return _categories;
    }
View Full Code Here

    /**
     * Builder accessor for the production metrics in this coverage.
     */
    public List<ProductionMetric.Builder> getProductionMetrics() {
      if (_productionMetrics == null)
        _productionMetrics = new LazyList(ProductionMetric.Builder.class);
      return _productionMetrics;
    }
View Full Code Here

    /**
     * Builder accessor for the non-state actors in this coverage.
     */
    public List<NonStateActor.Builder> getNonStateActors() {
      if (_nonStateActors == null)
        _nonStateActors = new LazyList(NonStateActor.Builder.class);
      return _nonStateActors;
    }
View Full Code Here

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

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

    /**
     * Builder accessor for the axisLabels
     */
    public void setAxisLabels(List<String> axisLabels) {
      _axisLabels = new LazyList(axisLabels, 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.