advertisement
javaboutique
Search Tips
Articles  |   Tutorials  |   Reviews  |   Tools  |   by Category  |   by Date  |   by Name  |   Submit  |   Source  |   Forums  |  
javaboutique
Browse DevX


Partners & Affiliates











advertisement



Title: JSP Tag Libraries
ISBN: 193011009X
US Price: $35.96
Publication Date: May 2001
Pages: 656
© 2001 Manning Publications Co.

Reviews : Java Books :
JSP Tag Libraries : Chapter 10: Iterating with Tags

IterateTagExtraInfo

Accompanying the IterateTag is the IterateTagExtraInfo whose implementation is fairly effortless. Once again, we need to create this TagExtraInfo object for our IterateTag because we will be exporting a scripting variable from it. From an attribute and variable exportation point of view, IterateTag and ExportTag (as presented in chapter 8) are quite similar. The only difference is that our current variable is exported as a NESTED variable, meaning its scope only exists within the tag's body. Because they are so similar, all we need to do is inherit ExportTagExtraInfo (again, from chapter 8) and modify the VariableInfo it returns to reflect a NESTED variable. As listing 10. 10 shows, this is exactly what we did.

Listing 10. 10 Source code for the IterateTagExtraInfo class

package book.iteration; 

import book.reflection.ExportTagExtraInfo; 
import javax.servlet.jsp.tagext.TagData; 
import javax.servlet.jsp.tagext.TagExtraInfo; 
import javax.servlet.jsp.tagext.VariableInfo; 

public class IterateTagExtraInfo extends ExportTagExtraInfo { 
	public VariableInfo[] getVariableInfo(TagData data) 
	{ 
		VariableInfo[] rc = new VariableInfo[ 1]; 
		
		rc[0] = new VariableInfo(data.getId(), 
			guessVariableType( data), 
			true, 
			VariableInfo.NESTED);  
		return rc; 
	} 
} 

Returns a NESTED variable.

IterateTag's TLD

The last step in our implementation of IterateTag is its tag library descriptor entry as seen in listing 10.11.

Listing 10. 11 Tag library descriptor entry for IterateTag

<tag> 
	<name> iterate</name> 
	<tagclass> book.iteration.IterateTag</tagclass> 
	<teiclass> book.iteration.IterateTagExtraInfo</teiclass> 
	<bodycontent> JSP</bodycontent> 
	<info> 
		Iterate over an Object. The object can be an array, 
		Iterator or Enumeration. 
	</info> 
	
	<attribute> 
		<name> id</name> 
		<required> true</required> 
		<rtexprvalue> false</rtexprvalue> 
	</attribute> 
	<attribute> 
		<name> type</name> 
		<required> false</required> 
		<rtexprvalue> false</rtexprvalue> 
	</attribute> 
	<attribute> 
		<name> object</name> 
		<required> false</required> 
		<rtexprvalue> true</rtexprvalue> 
	</attribute> 
	<attribute> 
		<name> name</name> 
		<required> false</required> 
		<rtexprvalue> false</rtexprvalue> 
	</attribute> 
	<attribute> 
		<name> scope</name> 
		<required> false</required> 
		<rtexprvalue> false</rtexprvalue> 
	</attribute> 
	<attribute> 
		<name> index</name> 
		<required> false</required> 
		<rtexprvalue> true</rtexprvalue> 
	</attribute> 
	<attribute> 
		<name> property</name> 
		<required> false</required> 
		<rtexprvalue> false</rtexprvalue> 
	</attribute> 
</tag> 

The tag library entry is almost identical to the one we had for ExportTag. The only significant difference is that ExportTag had an empty body, whereas IterateTag has, of course, a JSP body.

How to Add Java Applets to Your Site

New on the Java Boutique:

New Review:

Time Management Made Easy with the Quartz Enterprise Job Scheduler
Why not just use the Java timer API? This open source scheduling API boasts simplicity, ease-of-integration, a well-rounded feature set, and it's free!

New Applet:

Reverse Complement
Reverse Complement is a simple applet that converts DNA or RNA sequences into three useful formats.

Elsewhere on internet.com:

WebDeveloper Java
Lots of Java information on webdeveloper.com

WDVL Java
Thorough Java resource at the Web Developer's Virtual Library.

ScriptSearch Java
Hundreds of free Java code files to download.

jGuru: Your View of the Java Universe
Customizable portal with online training, FAQs, regular news updates, and tutorials.

 Microsoft Visual Studio 2010 Showcase
 Avaya Developer Showcase
 MSDN Spotlight
 PHP for Windows Showcase
XML error: undefined entity at line 39
advertisement
Receive Articles via our XML/RSS feed
Receive Articles via our XML/RSS feed

JavaBytes
Internet Cyclone
This powerful, easy-to-use, internet optimizer is for Windows 95, 98, ME, NT, 2000 and XP. It's designed to automatically optimize your Windows settings, boosting your Internet connection up to 200%.

Windows 7: From Beta to Final Code in One Year
Google Shows Off Chrome OS, Releases Source
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?
Fedora 12 Takes Aim at Linux Networking
Top Supercomputer Nearly Doubles in Speed
Fedora 12 Linux Tackles Virtualization
Apple Gives iPhone Developers App Status Tracker
Novell Sets OpenSUSE 11.2 Free

Creating Custom Export Filters for StarOffice with XSLT
WPF Wonders: Using DataTemplates
Crystal Reports Family Offers Options for Developers
Avaya Aura Session Manager video
Avaya Aura Overview video
Exploring HTML 5's Audio/Video Multimedia Support
Overriding Virtual Functions? Use C++0x Attributes to Avoid Bugs.
Understanding the Cloud Computing Security Vulnerabilities
Cisco and IBM Target a Greener World
Upgrade to Visual Studio 2010 with the Ultimate Offer

Advertising Info  |   Member Services  |   Contact Us  |   Help  |   Feedback  |   Site Map  |   Network Map  |   About

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs