Examples of Mets


Examples of edu.indiana.dlib.metsnav.mets.v1_6.Mets

     * @param oid
     * @return a <code>Mets</code> object
     */
    protected Mets unmarshallMets(String oid) throws IOException, MarshalException,
            ValidationException {
        Mets mets = null;
        Reader in = null;
        try {
            in = config.getDataSource().getReader(oid);
            mets = (Mets) Unmarshaller.unmarshal(Mets.class, in);
        } finally {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.