Package com.sun.syndication.feed.synd

Examples of com.sun.syndication.feed.synd.SyndEntryI


        syndFeed.setModules(ModuleUtils.cloneModules(channel.getModules()));

    }

    protected SyndEntryI createSyndEntry(Item item) {
        SyndEntryI syndEntry = super.createSyndEntry(item);

        Description desc = item.getDescription();
        if (desc!=null) {
            SyndContentI content = new SyndContent();
            content.setType(desc.getType());
            content.setValue(desc.getValue());
            syndEntry.setDescription(content);

            // contents[0] and description then reference the same content
            //
            List contents = new ArrayList();
            contents.add(content);
            syndEntry.setContents(contents);

        }

        syndEntry.setModules(ModuleUtils.cloneModules(item.getModules()));


        return syndEntry;
    }
View Full Code Here


    public String getType() {
        return "rss_0.92";
    }

    protected SyndEntryI createSyndEntry(Item item) {
        SyndEntryI syndEntry = super.createSyndEntry(item);
        List cats =  item.getCategories();
        if (cats!=null) {
            syndEntry.setCategories(createSyndCategories(cats));
        }
        return syndEntry;
    }
View Full Code Here

        }
        return syndEntries;
    }

    protected SyndEntryI createSyndEntry(Entry entry) {
        SyndEntryI syndEntry = new SyndEntry();

        syndEntry.setTitle(entry.getTitle());

        Link link = (Link) entry.getAlternateLinks().get(0);
        syndEntry.setLink(link.getHref());

        Content content = entry.getSummary();
        if (content==null) {
            List contents = entry.getContents();
            if (contents!=null && contents.size()>0) {
                content = (Content) contents.get(0);
            }
        }

        List contents = entry.getContents();
        if (contents.size()>0) {
            List sContents = new ArrayList();
            for (int i=0;i<contents.size();i++) {
                content = (Content) contents.get(i);
                SyndContentI sContent = new SyndContent();
                sContent.setType(content.getType());
                sContent.setValue(content.getValue());
                sContents.add(sContent);
            }
            syndEntry.setContents(sContents);
        }

        syndEntry.setModules(ModuleUtils.cloneModules(entry.getModules()));

        // Core Atom author/modified elements have precedence
        // over DC equivalent info.

        Person author = entry.getAuthor();
        if (author!=null && author.getName()!=null) {
            syndEntry.setAuthor(author.getName());
        }

        Date date = entry.getModified();
        if (date!=null) {
            syndEntry.setPublishedDate(date);
        }


        return syndEntry;
    }
View Full Code Here

TOP

Related Classes of com.sun.syndication.feed.synd.SyndEntryI

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.