Package buri.ddmsence.util

Examples of buri.ddmsence.util.LazyList


    /**
     * 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


    /**
     * Builder accessor for the details
     */
    public List<Details.Builder> getDetails() {
      if (_details == null)
        _details = new LazyList(Details.Builder.class);
      return _details;
    }
View Full Code Here

    /**
     * Builder accessor for the attributes
     */
    public List<ExtensibleAttributes.AttributeBuilder> getAttributes() {
      if (_attributes == null)
        _attributes = new LazyList(ExtensibleAttributes.AttributeBuilder.class);
      return _attributes;
    }
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 taskingInfos
     */
    public List<Identifier.Builder> getIdentifiers() {
      if (_identifiers == null)
        _identifiers = new LazyList(Identifier.Builder.class);
      return _identifiers;
    }
View Full Code Here

    /**
     * Builder accessor for creators
     */
    public List<Creator.Builder> getCreators() {
      if (_creators == null)
        _creators = new LazyList(Creator.Builder.class);
      return _creators;
    }
View Full Code Here

    /**
     * Builder accessor for contributors
     */
    public List<Contributor.Builder> getContributors() {
      if (_contributors == null)
        _contributors = new LazyList(Contributor.Builder.class);
      return _contributors;
    }
View Full Code Here

    /**
     * Builder accessor for publishers
     */
    public List<Publisher.Builder> getPublishers() {
      if (_publishers == null)
        _publishers = new LazyList(Publisher.Builder.class);
      return _publishers;
    }
View Full Code Here

    /**
     * Builder accessor for points of contact
     */
    public List<PointOfContact.Builder> getPointOfContacts() {
      if (_pointOfContacts == null)
        _pointOfContacts = new LazyList(PointOfContact.Builder.class);
      return _pointOfContacts;
    }
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.