You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2006/06/15 03:24:07 UTC

svn commit: r414424 - /incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/Renderer.java

Author: agilliland
Date: Wed Jun 14 18:24:07 2006
New Revision: 414424

URL: http://svn.apache.org/viewvc?rev=414424&view=rev
Log:
adding apache license.


Modified:
    incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/Renderer.java

Modified: incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/Renderer.java
URL: http://svn.apache.org/viewvc/incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/Renderer.java?rev=414424&r1=414423&r2=414424&view=diff
==============================================================================
--- incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/Renderer.java (original)
+++ incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/Renderer.java Wed Jun 14 18:24:07 2006
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  The ASF licenses this file to You
+ * under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.  For additional information regarding
+ * copyright in this work, please see the NOTICE file in the top level
+ * directory of this distribution.
+ */
 
 package org.apache.roller.ui.rendering;
 
@@ -10,6 +27,13 @@
  */
 public interface Renderer {
     
+    
+    /**
+     * Render the content for this Renderer to the given Writer using
+     * the given set of model objects.
+     *
+     * Throws an exception if there is a problem during rendering.
+     */
     public void render(Map model, Writer writer) throws Exception;
     
 }