Revision: 3721
Author: seba.wagner
Date: Tue Apr 19 02:36:04 2011
Log: [No log message]
http://code.google.com/p/openmeetings/source/detail?r=3721
Added:
/trunk/singlewebapp/src/app/org/openmeetings/app/conference/whiteboard/WhiteboardObject.java
=======================================
--- /dev/null
+++
/trunk/singlewebapp/src/app/org/openmeetings/app/conference/whiteboard/WhiteboardObject.java
Tue Apr 19 02:36:04 2011
@@ -0,0 +1,63 @@
+package org.openmeetings.app.conference.whiteboard;
+
+import java.util.Date;
+import java.util.HashMap;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.Map;
+
+public class WhiteboardObject {
+
+ private Long whiteBoardId;
+ private Integer x = 0;
+ private Integer y = 0;
+ private Integer zoom = 100;
+ private Boolean fullFit = true;
+ private Map<String,List> roomItems = new HashMap<String,List>();
+ private Date created = new Date();
+
+ public Long getWhiteBoardId() {
+ return whiteBoardId;
+ }
+ public void setWhiteBoardId(Long whiteBoardId) {
+ this.whiteBoardId = whiteBoardId;
+ }
+ public Integer getX() {
+ return x;
+ }
+ public void setX(Integer x) {
+ this.x = x;
+ }
+ public Integer getY() {
+ return y;
+ }
+ public void setY(Integer y) {
+ this.y = y;
+ }
+ public Map<String,List> getRoomItems() {
+ return roomItems;
+ }
+ public void setRoomItems(Map<String,List> roomItems) {
+ this.roomItems = roomItems;
+ }
+ public Date getCreated() {
+ return created;
+ }
+ public void setCreated(Date created) {
+ this.created = created;
+ }
+ public Integer getZoom() {
+ return zoom;
+ }
+ public void setZoom(Integer zoom) {
+ this.zoom = zoom;
+ }
+ public Boolean getFullFit() {
+ return fullFit;
+ }
+ public void setFullFit(Boolean fullFit) {
+ this.fullFit = fullFit;
+ }
+
+
+}
--
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en.