1 16 17 package org.apache.jetspeed.portal; 18 19 31 public interface PortletControl extends Portlet, PortletSet 32 { 33 34 public String COLOR = "#CCCCCC"; 35 public String BACKGROUND_COLOR = "#FFFFFF"; 36 public String TITLE_COLOR = "#DDDDDD"; 37 public String WIDTH = "100%"; 38 39 42 public PortletControlConfig getConfig(); 43 44 48 public void setConfig(PortletControlConfig conf); 49 50 55 public void setPortlet(Portlet portlet); 56 57 61 public Portlet getPortlet(); 62 63 68 public void init( Portlet portlet ); 69 70 78 public String getColor(); 79 80 88 public void setColor(String color); 89 90 98 public String getBackgroundColor(); 99 100 108 public void setBackgroundColor(String backgroundColor); 109 110 118 public String getTitleColor(); 119 120 128 public void setTitleColor(String titleColor); 129 130 138 public String getWidth(); 139 140 149 public void setWidth(int width); 150 151 161 public void setWidth(String width); 162 } 163 | Popular Tags |