Package org.restlet.ext.atom.internal

Examples of org.restlet.ext.atom.internal.FeedContentReader


     *            The XML feed document.
     * @throws IOException
     */
    public Feed(Representation xmlFeed) throws IOException {
        super(xmlFeed);
        parse(new FeedContentReader(this));
    }
View Full Code Here


     * @throws IOException
     */
    public Feed(Representation xmlFeed, FeedReader feedReader)
            throws IOException {
        super(xmlFeed);
        parse(new FeedContentReader(this, feedReader));
    }
View Full Code Here

TOP

Related Classes of org.restlet.ext.atom.internal.FeedContentReader

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.