Package fi.luomus.commons.containers

Examples of fi.luomus.commons.containers.Checklist


        Qname id = getObjectResourceQname(node);
        LocalizedText name = getNames(node);
        Qname rootTaxon = getRooTaxonOrNull(node);
        Qname owner = getOwnerOrNull(node);
        boolean isPublic = getPublicityDefaultToTrue(node);
        Checklist checklist = new Checklist(id, name, rootTaxon);
        checklist.setPublic(isPublic);
        if (owner != null) {
          checklist.setOwner(owner);
        }
        checklists.add(checklist);
      }
      return checklists;
    }
View Full Code Here

TOP

Related Classes of fi.luomus.commons.containers.Checklist

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.