[portal-commits] JBoss Portal SVN: r8989 - branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/impl/model.

portal-commits at lists.jboss.org portal-commits at lists.jboss.org
Sat Nov 17 09:02:15 EST 2007


Author: julien at jboss.com
Date: 2007-11-17 09:02:15 -0500 (Sat, 17 Nov 2007)
New Revision: 8989

Modified:
   branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/impl/model/UIWindowImpl.java
Log:
improve get markup of window

Modified: branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/impl/model/UIWindowImpl.java
===================================================================
--- branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/impl/model/UIWindowImpl.java	2007-11-17 13:53:13 UTC (rev 8988)
+++ branches/UIServer/uiserver/src/main/org/jboss/portal/presentation/impl/model/UIWindowImpl.java	2007-11-17 14:02:15 UTC (rev 8989)
@@ -26,6 +26,7 @@
 import org.jboss.portal.WindowState;
 import org.jboss.portal.presentation.model.UIObject;
 import org.jboss.portal.presentation.model.UIWindow;
+import org.jboss.portal.presentation.model.content.WindowContent;
 
 /**
  * @author <a href="mailto:sshah at redhat.com">Sohil Shah</a>
@@ -47,10 +48,25 @@
     * 
     */
    private String markup = null;
-   
+
    /**
     * 
     */
+   private WindowContent content = null;
+
+   public WindowContent getContent()
+   {
+      return content;
+   }
+
+   public void setContent(WindowContent content)
+   {
+      this.content = content;
+   }
+
+   /**
+    * 
+    */
    public Mode getMode()
    {      
       return this.mode;




More information about the portal-commits mailing list