[jboss-cvs] jboss-seam/src/ui/org/jboss/seam/ui ...

Peter Muir peter at bleepbleep.org.uk
Mon Mar 5 15:59:07 EST 2007


  User: pmuir   
  Date: 07/03/05 15:59:07

  Modified:    src/ui/org/jboss/seam/ui   JSF.java
  Removed:     src/ui/org/jboss/seam/ui   UIGraphicImage.java
  Log:
  Support s:imageTransform
  
  Revision  Changes    Path
  1.5       +4 -4      jboss-seam/src/ui/org/jboss/seam/ui/JSF.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: JSF.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/JSF.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- JSF.java	4 Mar 2007 21:51:51 -0000	1.4
  +++ JSF.java	5 Mar 2007 20:59:07 -0000	1.5
  @@ -26,7 +26,7 @@
    * Constant declarations for JSF tags
    * 
    * @author Anton Koinov (latest modification by $Author: pmuir $)
  - * @version $Revision: 1.4 $ $Date: 2007/03/04 21:51:51 $
  + * @version $Revision: 1.5 $ $Date: 2007/03/05 20:59:07 $
    */
   public class JSF
   {
  @@ -180,7 +180,7 @@
         }
      }
   
  -   static String getStringValue(FacesContext context, ValueBinding vb)
  +   public static String getStringValue(FacesContext context, ValueBinding vb)
      {
          Object value = vb.getValue(context);
          if (value == null)
  @@ -190,7 +190,7 @@
          return value.toString();
      }
      
  -   static Boolean getBooleanValue(FacesContext context, ValueBinding vb)
  +   public static Boolean getBooleanValue(FacesContext context, ValueBinding vb)
      {
          Object value = vb.getValue(context);
          if (value == null)
  
  
  



More information about the jboss-cvs-commits mailing list