You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by rg...@apache.org on 2007/01/03 23:48:38 UTC

svn commit: r492328 - /forrest/trunk/whiteboard/forrest2/core/src/core/org/apache/forrest/core/document/IDocument.java

Author: rgardler
Date: Wed Jan  3 14:48:38 2007
New Revision: 492328

URL: http://svn.apache.org/viewvc?view=rev&rev=492328
Log:
Need to be able to set the content

Modified:
    forrest/trunk/whiteboard/forrest2/core/src/core/org/apache/forrest/core/document/IDocument.java

Modified: forrest/trunk/whiteboard/forrest2/core/src/core/org/apache/forrest/core/document/IDocument.java
URL: http://svn.apache.org/viewvc/forrest/trunk/whiteboard/forrest2/core/src/core/org/apache/forrest/core/document/IDocument.java?view=diff&rev=492328&r1=492327&r2=492328
==============================================================================
--- forrest/trunk/whiteboard/forrest2/core/src/core/org/apache/forrest/core/document/IDocument.java (original)
+++ forrest/trunk/whiteboard/forrest2/core/src/core/org/apache/forrest/core/document/IDocument.java Wed Jan  3 14:48:38 2007
@@ -46,4 +46,10 @@
 	 * @return
 	 */
 	public URI getRequestURI();
+
+	/**
+	 * Set the content of this document.
+	 * @param content
+	 */
+	public void setContent(String content);
 }