1 16 17 package org.apache.jetspeed.portal; 18 19 import org.apache.jetspeed.capability.CapabilityMap; 20 21 30 public interface PortletSkin extends java.util.Map 31 { 32 public static final String TEXT_COLOR = "text-color"; 33 public static final String BACKGROUND_COLOR = "background-color"; 34 public static final String TITLE_TEXT_COLOR = "title-text-color"; 35 public static final String TITLE_BACKGROUND_COLOR = "title-background-color"; 36 public static final String HIGHLIGHT_TEXT_COLOR = "highlight-text-color"; 37 public static final String HIGHLIGHT_BACKGROUND_COLOR = "highlight-background-color"; 38 public static final String CONTROLLER_STYLE_CLASS = "controller-style-class"; 39 public static final String PORTLET_STYLE_CLASS = "portlet-style-class"; 40 public static final String TITLE_STYLE_CLASS = "title-style-class"; 41 public static final String CONTENT_STYLE_CLASS = "content-style-class"; 42 public static final String HIGHLIGHT_TITLE_STYLE_CLASS = "highlight-title-style-class"; 43 public static final String TAB_STYLE_CLASS = "tab-style-class"; 44 public static final String TAB_TITLE_STYLE_CLASS = "tab-title-style-class"; 45 public static final String TAB_CONTENT_STYLE_CLASS = "tab-content-style-class"; 46 public static final String PORTLET_SKIN_CLASS = "portlet-skin-class"; 47 48 52 String getName(); 53 54 58 String getTextColor(); 59 60 64 void setTextColor(String color); 65 66 70 String getBackgroundColor(); 71 72 76 void setBackgroundColor(String backgroundColor); 77 78 82 String getTitleTextColor(); 83 84 88 void setTitleTextColor(String titleColor); 89 90 94 String getTitleBackgroundColor(); 95 96 100 void setTitleBackgroundColor(String titleColor); 101 102 106 String getHighlightTextColor(); 107 108 112 void setHighlightTextColor(String titleColor); 113 114 118 String getHighlightBackgroundColor(); 119 120 124 void setHighlightBackgroundColor(String titleColor); 125 126 130 String getPortletStyleClass(); 131 132 136 void setPortletStyleClass(String portletStyleClass); 137 138 142 String getTitleStyleClass(); 143 144 148 void setTitleStyleClass(String titleStyleClass); 149 150 154 String getContentStyleClass(); 155 156 160 void setContentStyleClass(String contentStyleClass); 161 162 166 String getTabStyleClass(); 167 168 172 void setTabStyleClass(String tabStyleClass); 173 174 178 String getTabTitleStyleClass(); 179 180 184 void setTabTitleStyleClass(String tabTitleStyleClass); 185 186 190 String getTabContentStyleClass(); 191 192 196 void setTabContentStyleClass(String tabContentStyleClass); 197 198 202 String getHighlightTitleStyleClass(); 203 204 208 void setHighlightTitleStyleClass(String highlightTitleStyleClass); 209 210 214 String getControllerStyleClass(); 215 216 220 void setControllerStyleClass(String controllerStyleClass); 221 222 233 String getImage(String name, String dftPath); 234 235 241 void setCapabilityMap(CapabilityMap cm); 242 243 259 String getPortletSkinClass(); 260 261 } 262 | Popular Tags |