當前位置: 首頁>>代碼示例>>Java>>正文


Java SyndEntry.getModule方法代碼示例

本文整理匯總了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;
}
 
開發者ID:Norkart,項目名稱:NK-VirtualGlobe,代碼行數:30,代碼來源:GeoRSSUtils.java

示例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);

}
 
開發者ID:parabuild-ci,項目名稱:parabuild-ci,代碼行數:8,代碼來源:TestSyndFeedAtom03DCSyModules.java

示例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+"].");

}
 
開發者ID:parabuild-ci,項目名稱:parabuild-ci,代碼行數:8,代碼來源:TestSyndFeedRSS10DCSyModules.java

示例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;
 */
    }
 
開發者ID:apache,項目名稱:marmotta,代碼行數:39,代碼來源:GeoRSSUtils.java

示例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 + "].");
}
 
開發者ID:parabuild-ci,項目名稱:parabuild-ci,代碼行數:7,代碼來源:TestSyndFeedRSS10DCMulti.java


注:本文中的com.sun.syndication.feed.synd.SyndEntry.getModule方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。