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