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