Package edu.harvard.hul.ois.fits.identity

Examples of edu.harvard.hul.ois.fits.identity.FormatVersion


          }
          if(toolVersionAttr != null) {
            toolInfo.setVersion(toolVersionAttr.getValue());
          }
          String value = versionElement.getText();
          FormatVersion formatVersion = new FormatVersion(value,toolInfo);
          fileIdentSect.addFormatVersion(formatVersion);
        }
       
        //get the externalIdentifier elements
        List<Element> xIDElements = element.getChildren("externalIdentifier",ns);
View Full Code Here


     
    }
  }
 
  private void mergeFormatVersions(ToolIdentity a, FitsIdentity b) {
    FormatVersion v = a.getFormatVersion();
    if(v != null && v.getValue() != null && !b.hasFormatVersion(v)) {
      b.addFormatVersion(v);
    }
  }
View Full Code Here

TOP

Related Classes of edu.harvard.hul.ois.fits.identity.FormatVersion

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.