Package com.eaglegenomics.simlims.core

Examples of com.eaglegenomics.simlims.core.DataReference


          .getPriority().toString()));
      activityDataEl.setAttribute(new Attribute("uniqueId", ""
          + data.getUniqueId()));
      activityDataEl.setAttribute(new Attribute("displayName",
          displayName));
      DataReference dataRef = data.getDataReference();
      Element dataRefEl = new Element("dataReference");
      dataRefEl.setAttribute(new Attribute("referenceClass", dataRef
          .getReferenceClass().getName()));
      dataRefEl.setAttribute(new Attribute("referenceId", ""
          + dataRef.getReferenceId()));
      activityDataEl.addContent(dataRefEl);
      for (Map.Entry<String, ActivityData.Entry> indexedEntry : data
          .getIndexedEntries().entrySet()) {
        String index = indexedEntry.getKey();
        ActivityData.Entry entry = indexedEntry.getValue();
View Full Code Here

TOP

Related Classes of com.eaglegenomics.simlims.core.DataReference

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.