001
014
015 package com.liferay.portlet.journal;
016
017 import com.liferay.portal.theme.ThemeDisplay;
018 import com.liferay.portlet.expando.model.BaseCustomAttributesDisplay;
019 import com.liferay.portlet.journal.model.JournalArticle;
020
021
024 public class JournalArticleCustomAttributesDisplay
025 extends BaseCustomAttributesDisplay {
026
027 public static final String CLASS_NAME = JournalArticle.class.getName();
028
029 public String getClassName() {
030 return CLASS_NAME;
031 }
032
033 public String getIconPath(ThemeDisplay themeDisplay) {
034 return themeDisplay.getPathThemeImages() + "/common/history.png";
035 }
036
037 }