本文整理汇总了Java中com.sun.syndication.feed.synd.SyndEntry.getModule方法的典型用法代码示例。如果您正苦于以下问题:Java SyndEntry.getModule方法的具体用法?Java SyndEntry.getModule怎么用?Java SyndEntry.getModule使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.syndication.feed.synd.SyndEntry
的用法示例。
在下文中一共展示了SyndEntry.getModule方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getGeoRSS
import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
/**
* This convenience method checks whether there is any geoRss Element and
* will return it (georss simple or W3GGeo).
*
* @param entry
* the element in the feed which might have a georss element
* @return a georssmodule or null if none is present
*/
public static GeoRSSModule getGeoRSS(SyndEntry entry) {
GeoRSSModule geoRSSModule = (GeoRSSModule) entry
.getModule(GeoRSSModule.GEORSS_GEORSS_URI);
GeoRSSModule w3cGeo = (GeoRSSModule) entry
.getModule(GeoRSSModule.GEORSS_W3CGEO_URI);
GeoRSSModule gml = (GeoRSSModule) entry
.getModule(GeoRSSModule.GEORSS_GML_URI);
if (geoRSSModule == null && w3cGeo != null) {
geoRSSModule = w3cGeo;
} else if (geoRSSModule == null && gml != null) {
geoRSSModule = gml;
} else if (geoRSSModule != null && w3cGeo != null) {
// sanity check
if (!geoRSSModule.getGeometry().equals(w3cGeo.getGeometry())) {
throw new Error("geometry of simple and w3c do not match");
}
}
return geoRSSModule;
}
示例2: _testEntryDCModule
import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
protected void _testEntryDCModule(int i) throws Exception {
List entries = getCachedSyndFeed().getEntries();
SyndEntry entry = (SyndEntry) entries.get(i);
DCModule dc = (DCModule) entry.getModule(DCModule.URI);
_testDCModule(dc,"feed.entry["+i+"].",true,i);
}
示例3: _testItemDCModule
import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
protected void _testItemDCModule(int i) throws Exception {
List entries = getCachedSyndFeed().getEntries();
SyndEntry entry = (SyndEntry) entries.get(i);
DCModule dc = (DCModule) entry.getModule(DCModule.URI);
_testDCModule(dc,"item["+i+"].");
}
示例4: getGeoRSS
import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
/**
* This convenience method checks whether there is any geoRss Element and
* will return it (georss simple or W3GGeo).
*
* @param entry
* the element in the feed which might have a georss element
* @return a georssmodule or null if none is present
*/
public static GeoRSSModule getGeoRSS(SyndEntry entry) {
GeoRSSModule simple = (GeoRSSModule) entry
.getModule(GeoRSSModule.GEORSS_GEORSS_URI);
GeoRSSModule w3cGeo = (GeoRSSModule) entry
.getModule(GeoRSSModule.GEORSS_W3CGEO_URI);
GeoRSSModule gml = (GeoRSSModule) entry
.getModule(GeoRSSModule.GEORSS_GML_URI);
if (gml != null)
return gml;
if (simple != null)
return simple;
if (w3cGeo != null)
return w3cGeo;
return null;
/*
if (geoRSSModule == null && w3cGeo != null) {
geoRSSModule = w3cGeo;
} else if (geoRSSModule == null && gml != null) {
geoRSSModule = gml;
} else if (geoRSSModule != null && w3cGeo != null) {
// sanity check
if (!geoRSSModule.getGeometry().equals(w3cGeo.getGeometry())) {
throw new Error("geometry of simple and w3c do not match");
}
}
return geoRSSModule;
*/
}
示例5: _testItemDCModule
import com.sun.syndication.feed.synd.SyndEntry; //导入方法依赖的package包/类
protected void _testItemDCModule(int i) throws Exception {
List entries = getCachedSyndFeed().getEntries();
SyndEntry entry = (SyndEntry) entries.get(i);
DCModule dc = (DCModule) entry.getModule(DCModule.URI);
_testDCModule(dc, "item[" + i + "].");
}