MediaData.java :  » JBoss » richfaces-ui-3.3.2 » org » richfaces » demo » media » Java Open Source

Java Open Source » JBoss » richfaces ui 3.3.2 
richfaces ui 3.3.2 » org » richfaces » demo » media » MediaData.java
package org.richfaces.demo.media;

import java.awt.Color;
import java.io.Serializable;

public class MediaData implements Serializable{

  private static final long serialVersionUID = 1L;
  Integer Width=110;
  Integer Height=50;
  Color Background=new Color(0,0,0);
  Color DrawColor=new Color(255,255,255);
  public MediaData() {
  }
  public Color getBackground() {
    return Background;
  }
  public void setBackground(Color background) {
    Background = background;
  }
  public Color getDrawColor() {
    return DrawColor;
  }
  public void setDrawColor(Color drawColor) {
    DrawColor = drawColor;
  }
  public Integer getHeight() {
    return Height;
  }
  public void setHeight(Integer height) {
    Height = height;
  }
  public Integer getWidth() {
    return Width;
  }
  public void setWidth(Integer width) {
    Width = width;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.