本文整理匯總了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 + "].");
}