[richfaces-svn-commits] JBoss Rich Faces SVN: r2384 - trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/media.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Tue Aug 21 15:37:43 EDT 2007


Author: SergeySmirnov
Date: 2007-08-21 15:37:43 -0400 (Tue, 21 Aug 2007)
New Revision: 2384

Added:
   trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/media/MediaData.java
Log:


Added: trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/media/MediaData.java
===================================================================
--- trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/media/MediaData.java	                        (rev 0)
+++ trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/media/MediaData.java	2007-08-21 19:37:43 UTC (rev 2384)
@@ -0,0 +1,39 @@
+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;
+	}
+}
\ No newline at end of file




More information about the richfaces-svn-commits mailing list