⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 remotefeed.java

📁 google的开源项目
💻 JAVA
字号:
package com.google.code.rsser.model;import java.util.List;public class RemoteFeed {	protected String url;	protected String title;	protected String description;	protected List<RemoteEntry> entries;	public String getUrl() {		return url;	}	public void setUrl(String url) {		this.url = url;	}	public String getTitle() {		return title;	}	public void setTitle(String title) {		this.title = title;	}	public List<RemoteEntry> getEntries() {		return entries;	}	public void setEntries(List<RemoteEntry> entries) {		this.entries = entries;	}	public String getDescription() {		return description;	}	public void setDescription(String description) {		this.description = description;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -