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

📄 resultitem.java

📁 java写的blog
💻 JAVA
字号:
/*
 * Created on 2004-11-2
 * Author: Xuefeng, Copyright (C) 2004, Xuefeng.
 */
package org.crystalblog.search;

/**
 * Search result.
 * 
 * @author Xuefeng
 */
public class ResultItem {

    private String articleId;
    private String title;
    private String summary;
    private String content;

    private String createdDate;
    private String updatedDate;

    public ResultItem(String articleId, String title, String summary, String content,
            String createdDate, String updatedDate)
    {
        this.articleId = articleId;
        this.title = title;
        this.summary = summary;
        this.content = content;
        this.createdDate = createdDate;
        this.updatedDate = updatedDate;
    }

    public String getArticleId() { return articleId; }
    public String getTitle() { return title; }
    public String getSummary() { return summary; }
    public String getContent() { return content; }

    public String getCreatedDate() { return createdDate; }
    public String getUpdatedDate() { return updatedDate; }
}

⌨️ 快捷键说明

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