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