Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 68571 invoked from network); 3 Feb 2008 19:46:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Feb 2008 19:46:17 -0000 Received: (qmail 55727 invoked by uid 500); 3 Feb 2008 19:46:01 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 55682 invoked by uid 500); 3 Feb 2008 19:46:01 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 55671 invoked by uid 500); 3 Feb 2008 19:46:01 -0000 Delivered-To: apmail-jakarta-tomcat-dev@jakarta.apache.org Received: (qmail 55668 invoked by uid 99); 3 Feb 2008 19:46:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Feb 2008 11:46:01 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Feb 2008 19:45:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EE92D1A9838; Sun, 3 Feb 2008 11:45:48 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r618070 - /tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java Date: Sun, 03 Feb 2008 19:45:48 -0000 To: tomcat-dev@jakarta.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080203194548.EE92D1A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: markt Date: Sun Feb 3 11:45:46 2008 New Revision: 618070 URL: http://svn.apache.org/viewvc?rev=618070&view=rev Log: Tabs to 8 spaces. No functional change. Modified: tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java Modified: tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java?rev=618070&r1=618069&r2=618070&view=diff ============================================================================== --- tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java (original) +++ tomcat/trunk/java/javax/servlet/jsp/tagext/TagInfo.java Sun Feb 3 11:45:46 2008 @@ -76,24 +76,24 @@ * */ public TagInfo(String tagName, - String tagClassName, - String bodycontent, - String infoString, - TagLibraryInfo taglib, - TagExtraInfo tagExtraInfo, - TagAttributeInfo[] attributeInfo) { - this.tagName = tagName; - this.tagClassName = tagClassName; - this.bodyContent = bodycontent; - this.infoString = infoString; - this.tagLibrary = taglib; - this.tagExtraInfo = tagExtraInfo; - this.attributeInfo = attributeInfo; + String tagClassName, + String bodycontent, + String infoString, + TagLibraryInfo taglib, + TagExtraInfo tagExtraInfo, + TagAttributeInfo[] attributeInfo) { + this.tagName = tagName; + this.tagClassName = tagClassName; + this.bodyContent = bodycontent; + this.infoString = infoString; + this.tagLibrary = taglib; + this.tagExtraInfo = tagExtraInfo; + this.attributeInfo = attributeInfo; - if (tagExtraInfo != null) + if (tagExtraInfo != null) tagExtraInfo.setTagInfo(this); } - + /** * Constructor for TagInfo from data in the JSP 1.2 format for TLD. * This class is to be instantiated only from the TagLibrary code @@ -119,32 +119,32 @@ * @param tvi An array of a TagVariableInfo (or null) */ public TagInfo(String tagName, - String tagClassName, - String bodycontent, - String infoString, - TagLibraryInfo taglib, - TagExtraInfo tagExtraInfo, - TagAttributeInfo[] attributeInfo, - String displayName, - String smallIcon, - String largeIcon, - TagVariableInfo[] tvi) { - this.tagName = tagName; - this.tagClassName = tagClassName; - this.bodyContent = bodycontent; - this.infoString = infoString; - this.tagLibrary = taglib; - this.tagExtraInfo = tagExtraInfo; - this.attributeInfo = attributeInfo; - this.displayName = displayName; - this.smallIcon = smallIcon; - this.largeIcon = largeIcon; - this.tagVariableInfo = tvi; + String tagClassName, + String bodycontent, + String infoString, + TagLibraryInfo taglib, + TagExtraInfo tagExtraInfo, + TagAttributeInfo[] attributeInfo, + String displayName, + String smallIcon, + String largeIcon, + TagVariableInfo[] tvi) { + this.tagName = tagName; + this.tagClassName = tagClassName; + this.bodyContent = bodycontent; + this.infoString = infoString; + this.tagLibrary = taglib; + this.tagExtraInfo = tagExtraInfo; + this.attributeInfo = attributeInfo; + this.displayName = displayName; + this.smallIcon = smallIcon; + this.largeIcon = largeIcon; + this.tagVariableInfo = tvi; - if (tagExtraInfo != null) + if (tagExtraInfo != null) tagExtraInfo.setTagInfo(this); } - + /** * Constructor for TagInfo from data in the JSP 2.0 format for TLD. * This class is to be instantiated only from the TagLibrary code @@ -208,7 +208,7 @@ */ public String getTagName() { - return tagName; + return tagName; } /** @@ -237,7 +237,7 @@ VariableInfo[] result = null; TagExtraInfo tei = getTagExtraInfo(); if (tei != null) { - result = tei.getVariableInfo( data ); + result = tei.getVariableInfo( data ); } return result; } @@ -252,7 +252,7 @@ public boolean isValid(TagData data) { TagExtraInfo tei = getTagExtraInfo(); if (tei == null) { - return true; + return true; } return tei.isValid(data); } @@ -267,11 +267,11 @@ * @since 2.0 */ public ValidationMessage[] validate( TagData data ) { - TagExtraInfo tei = getTagExtraInfo(); - if( tei == null ) { - return null; - } - return tei.validate( data ); + TagExtraInfo tei = getTagExtraInfo(); + if( tei == null ) { + return null; + } + return tei.validate( data ); } /** @@ -280,7 +280,7 @@ * @param tei the TagExtraInfo instance */ public void setTagExtraInfo(TagExtraInfo tei) { - tagExtraInfo = tei; + tagExtraInfo = tei; } @@ -290,7 +290,7 @@ * @return The TagExtraInfo instance, if any. */ public TagExtraInfo getTagExtraInfo() { - return tagExtraInfo; + return tagExtraInfo; } @@ -301,7 +301,7 @@ */ public String getTagClassName() { - return tagClassName; + return tagClassName; } @@ -314,7 +314,7 @@ */ public String getBodyContent() { - return bodyContent; + return bodyContent; } @@ -326,7 +326,7 @@ */ public String getInfoString() { - return infoString; + return infoString; } @@ -346,7 +346,7 @@ */ public void setTagLibrary(TagLibraryInfo tl) { - tagLibrary = tl; + tagLibrary = tl; } /** @@ -356,7 +356,7 @@ */ public TagLibraryInfo getTagLibrary() { - return tagLibrary; + return tagLibrary; } @@ -371,7 +371,7 @@ */ public String getDisplayName() { - return displayName; + return displayName; } /** @@ -382,7 +382,7 @@ */ public String getSmallIcon() { - return smallIcon; + return smallIcon; } /** @@ -393,7 +393,7 @@ */ public String getLargeIcon() { - return largeIcon; + return largeIcon; } /** @@ -405,7 +405,7 @@ */ public TagVariableInfo[] getTagVariableInfos() { - return tagVariableInfo; + return tagVariableInfo; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org