You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/03/04 11:21:29 UTC

svn commit: r633413 - /myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/webapp/UIComponentTag.java

Author: skitching
Date: Tue Mar  4 02:21:28 2008
New Revision: 633413

URL: http://svn.apache.org/viewvc?rev=633413&view=rev
Log:
Replace tabs with spaces

Modified:
    myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/webapp/UIComponentTag.java

Modified: myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/webapp/UIComponentTag.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/webapp/UIComponentTag.java?rev=633413&r1=633412&r2=633413&view=diff
==============================================================================
--- myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/webapp/UIComponentTag.java (original)
+++ myfaces/core/trunk_1.2.x/api/src/main/java/javax/faces/webapp/UIComponentTag.java Tue Mar  4 02:21:28 2008
@@ -241,45 +241,45 @@
      */
     private static class UIComponentTagWrapper extends UIComponentTag
     {
-    	private UIComponentClassicTagBase target;
+        private UIComponentClassicTagBase target;
 
-    	public UIComponentTagWrapper(UIComponentClassicTagBase classicTag)
+        public UIComponentTagWrapper(UIComponentClassicTagBase classicTag)
         {
-    		target = classicTag;
+            target = classicTag;
         }
 
-    	// -----------------------------------------------------------
-    	// Methods that can reasonably be called on a parent tag object
-    	// -----------------------------------------------------------
+        // -----------------------------------------------------------
+        // Methods that can reasonably be called on a parent tag object
+        // -----------------------------------------------------------
 
-    	@Override
+        @Override
         public String getComponentType()
         {
-        	return target.getComponentType();
+            return target.getComponentType();
         }
 
         @Override
         public String getRendererType()
         {
-        	return target.getRendererType();
+            return target.getRendererType();
         }
 
         @Override
         public boolean getCreated()
         {
-        	return target.getCreated();
+            return target.getCreated();
         }
 
         @Override
         public String getId()
         {
-        	return target.getId();
+            return target.getId();
         }
 
         @Override
         public UIComponent getComponentInstance()
         {
-        	return target.getComponentInstance();
+            return target.getComponentInstance();
         }
 
         @Override
@@ -289,61 +289,61 @@
         }
 
         // -----------------------------------------------------------
-    	// Methods that should never be called on a parent tag object
-    	// -----------------------------------------------------------
+        // Methods that should never be called on a parent tag object
+        // -----------------------------------------------------------
 
         @Override
         public void release()
         {
-        	throw new UnsupportedOperationException();
+            throw new UnsupportedOperationException();
         }
 
         @Override
         public void setBinding(String binding) throws JspException
         {
-        	throw new UnsupportedOperationException();
+            throw new UnsupportedOperationException();
         }
 
         @Override
         public void setId(String id)
         {
-        	throw new UnsupportedOperationException();
+            throw new UnsupportedOperationException();
         }
 
         @Override
         public void setRendered(String state)
         {
-        	throw new UnsupportedOperationException();
+            throw new UnsupportedOperationException();
         }
 
         @Override
         protected UIComponent createComponent(FacesContext context, String newId)
         {
-        	throw new UnsupportedOperationException();
+            throw new UnsupportedOperationException();
         }
 
         @Override
         public void setPageContext(PageContext context)
         {
-        	throw new UnsupportedOperationException();
+            throw new UnsupportedOperationException();
         }
 
         @Override
         public void setParent(Tag parent)
         {
-        	throw new UnsupportedOperationException();
+            throw new UnsupportedOperationException();
         }
 
         @Override
         protected UIComponent findComponent(FacesContext context) throws JspException
         {
-        	throw new UnsupportedOperationException();
+            throw new UnsupportedOperationException();
         }
 
         @Override
         protected FacesContext getFacesContext()
         {
-        	throw new UnsupportedOperationException();
+            throw new UnsupportedOperationException();
         }
 
         // Methods that no sane user of this class would call, so we do not need to override here: