com.actuate.activeportal.beans
Class SkinBean

java.lang.Object
  extended by com.actuate.activeportal.beans.SkinBean
All Implemented Interfaces:
java.io.Serializable

public class SkinBean
extends java.lang.Object
implements java.io.Serializable

This bean is used to work with css style such as images, colors and fonts. the colors tab of the skin editor it contains information about colors specified in the skin.config file. This class represents either the element <Style> or <Image> in the skin.config file. They can be accessed with getStyle() or getImage() method.

Author:
vchatterji
See Also:
Serialized Form

Constructor Summary
SkinBean()
           
 
Method Summary
 java.lang.String getBlue()
          Returns the String of blue hexdecimal value for a color type Style.
 java.lang.String getGreen()
          Returns the String of green hexdecimal value for a color type Style.
 com.actuate.activeportal.skin.config.Image getImage()
          Returns the Image object.
 java.lang.String getImageURL()
          Returns the image URL.
 java.lang.String getRed()
          Returns the String of red hexdecimal value for a color type Style.
 com.actuate.activeportal.skin.config.Style getStyle()
          Returns the Style object
 java.lang.String getUploadedImage()
          Returns the uploaded image.
 void setBlue(java.lang.String blue)
          Sets the String of blue hexdecimal value for a color type Style.
 void setGreen(java.lang.String green)
          Sets the String of green hexdecimal value for a color type Style.
 void setImage(com.actuate.activeportal.skin.config.Image image)
          Sets the Image object.
 void setImageURL(java.lang.String string)
          Sets the image URL.
 void setRed(java.lang.String red)
          Sets the String of red hexdecimal value for a color type Style.
 void setStyle(com.actuate.activeportal.skin.config.Style style)
          Sets the Style object
 void setUploadedImage(java.lang.String string)
          Sets the uploaded image.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SkinBean

public SkinBean()
Method Detail

getImage

public com.actuate.activeportal.skin.config.Image getImage()
Returns the Image object.


setImage

public void setImage(com.actuate.activeportal.skin.config.Image image)
Sets the Image object.


getImageURL

public java.lang.String getImageURL()
Returns the image URL.


setImageURL

public void setImageURL(java.lang.String string)
Sets the image URL.


getUploadedImage

public java.lang.String getUploadedImage()
Returns the uploaded image.


setUploadedImage

public void setUploadedImage(java.lang.String string)
Sets the uploaded image.


getRed

public java.lang.String getRed()
Returns the String of red hexdecimal value for a color type Style.


getGreen

public java.lang.String getGreen()
Returns the String of green hexdecimal value for a color type Style.


getBlue

public java.lang.String getBlue()
Returns the String of blue hexdecimal value for a color type Style.


setRed

public void setRed(java.lang.String red)
Sets the String of red hexdecimal value for a color type Style.


setGreen

public void setGreen(java.lang.String green)
Sets the String of green hexdecimal value for a color type Style.


setBlue

public void setBlue(java.lang.String blue)
Sets the String of blue hexdecimal value for a color type Style.


getStyle

public com.actuate.activeportal.skin.config.Style getStyle()
Returns the Style object


setStyle

public void setStyle(com.actuate.activeportal.skin.config.Style style)
Sets the Style object