[seam-commits] Seam SVN: r12010 - branches/community/Seam_2_2/src/main/org/jboss/seam/core.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Thu Feb 4 12:50:16 EST 2010


Author: manaRH
Date: 2010-02-04 12:50:16 -0500 (Thu, 04 Feb 2010)
New Revision: 12010

Modified:
   branches/community/Seam_2_2/src/main/org/jboss/seam/core/Interpolator.java
Log:
reformat the whole class against Seam format rules

Modified: branches/community/Seam_2_2/src/main/org/jboss/seam/core/Interpolator.java
===================================================================
--- branches/community/Seam_2_2/src/main/org/jboss/seam/core/Interpolator.java	2010-02-04 17:34:49 UTC (rev 12009)
+++ branches/community/Seam_2_2/src/main/org/jboss/seam/core/Interpolator.java	2010-02-04 17:50:16 UTC (rev 12010)
@@ -24,45 +24,51 @@
 @BypassInterceptors
 @Scope(STATELESS)
 @Name("org.jboss.seam.core.interpolator")
- at Install(precedence=BUILT_IN)
-public class Interpolator 
+ at Install(precedence = BUILT_IN)
+public class Interpolator
 {
-
-    private static final LogProvider log = Logging.getLogProvider(Interpolator.class);
-
-    public static Interpolator instance()
-    {
-        if (Contexts.isApplicationContextActive()) {
-            return (Interpolator) Component.getInstance(Interpolator.class, ScopeType.APPLICATION);         
-        } else {
-            return new Interpolator(); //for unit testing
-        }
-    }
-
-    /**
-     * Replace all EL expressions in the form #{...} with their evaluated
-     * values.
-     * 
-     * @param string a template
-     * @return the interpolated string
-     */
-    public String interpolate(String string, Object... params) 
-    {
-        if (params == null) {
-            params = new Object[0];
-        }
-
-        if (params.length>10) {
-            throw new IllegalArgumentException("more than 10 parameters");
-        }
-
-        if (string.indexOf('#')>=0 || string.indexOf('{')>=0) {
-            string = interpolateExpressions(string, params);
-        }
-
-        return string;
-    }
-
+   
+   private static final LogProvider log = Logging.getLogProvider(Interpolator.class);
+   
+   public static Interpolator instance()
+   {
+      if (Contexts.isApplicationContextActive())
+      {
+         return (Interpolator) Component.getInstance(Interpolator.class, ScopeType.APPLICATION);
+      }
+      else
+      {
+         return new Interpolator(); // for unit testing
+      }
+   }
+   
+   /**
+    * Replace all EL expressions in the form #{...} with their evaluated values.
+    * 
+    * @param string
+    *           a template
+    * @return the interpolated string
+    */
+   public String interpolate(String string, Object... params)
+   {
+      if (params == null)
+      {
+         params = new Object[0];
+      }
+      
+      if (params.length > 10)
+      {
+         throw new IllegalArgumentException("more than 10 parameters");
+      }
+      
+      if (string.indexOf('#') >= 0 || string.indexOf('{') >= 0)
+      {
+         string = interpolateExpressions(string, params);
+      }
+      
+      return string;
+   }
+   
    private String interpolateExpressions(String string, Object... params)
    {
       StringTokenizer tokens = new StringTokenizer(string, "#{}", true);
@@ -189,5 +195,5 @@
       
       return builder.toString();
    }
-
+   
 }



More information about the seam-commits mailing list