You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ja...@apache.org on 2009/03/07 16:42:17 UTC

svn commit: r751285 - /myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/render/FacesRenderer.java

Author: jankeesvanandel
Date: Sat Mar  7 15:42:17 2009
New Revision: 751285

URL: http://svn.apache.org/viewvc?rev=751285&view=rev
Log:
Fix for issue MYFACES-2162

Modified:
    myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/render/FacesRenderer.java

Modified: myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/render/FacesRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/render/FacesRenderer.java?rev=751285&r1=751284&r2=751285&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/render/FacesRenderer.java (original)
+++ myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/render/FacesRenderer.java Sat Mar  7 15:42:17 2009
@@ -27,14 +27,14 @@
     /**
      * The value of this annotation attribute is taken to be the <i>component-family</i> which, in combination with
      * {@link #rendererType()} can be used to obtain a reference to an instance of this {@link Renderer} by calling
-     * {@link RenderKit.getRenderer(java.lang.String, java.lang.String)}.
+     * {@link RenderKit#getRenderer(java.lang.String, java.lang.String)}.
      */
     public String componentFamily();
 
     /**
      * The value of this annotation attribute is taken to be the <i>renderer-type</i> which, in combination with
      * {@link #componentFamily()} can be used to obtain a reference to an instance of this {@link Renderer} by calling
-     * {@link RenderKit.getRenderer(java.lang.String, java.lang.String)}.
+     * {@link RenderKit#getRenderer(java.lang.String, java.lang.String)}.
      */
     public String rendererType();
 
@@ -42,5 +42,5 @@
      * The value of this annotation attribute is taken to be the <i>render-kit-id</i> in which an instance of this class
      * of {@link Renderer} must be installed.
      */
-    public String renderKitId() default "";
+    public String renderKitId() default "HTML_BASIC";
 }