protected ConverterForRSS091Userland(String type) {
super(type);
}
public void copyInto(WireFeed feed,SyndFeed syndFeed) {
Channel channel = (Channel) feed;
super.copyInto(channel,syndFeed);
syndFeed.setLanguage(channel.getLanguage()); //c
syndFeed.setCopyright(channel.getCopyright()); //c
Date pubDate = channel.getPubDate();
if (pubDate!=null) {
syndFeed.setPublishedDate(pubDate); //c
} else if (channel.getLastBuildDate() != null) {
// TODO: @FID43 lastBuildDate does not populate publishedDate
ROME.failed(Failure.ROME43);
}
String author = channel.getManagingEditor();
if (author!=null) {
List creators = ((DCModule) syndFeed.getModule(DCModule.URI)).getCreators();
if (!creators.contains(author)) {
Set s = new HashSet(); // using a set to remove duplicates
s.addAll(creators); // DC creators