Package org.rometools.feed.module.mediarss.types

Examples of org.rometools.feed.module.mediarss.types.Hash


        // hash
        try {
            Element hash = e.getChild("hash", getNS());
           
            if (hash != null) {
                md.setHash(new Hash(hash.getAttributeValue("algo"),
                        hash.getText()));
            }
        } catch (Exception ex) {
            LOG.log(Level.WARNING, "Exception parsing hash tag.", ex);
        }
View Full Code Here

TOP

Related Classes of org.rometools.feed.module.mediarss.types.Hash

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.