> So you're not able to reference static public final 
> properties in the same fashion as scriplets? 
> <%=Constants.MY_CONSTANT%>

Tags are fundamentally different from scriptlets. Scriptlets are simply Java
code, and you can address a member variable of a class from a scriptlet just
as you could in any Java code. (Providing its not "private" or "protected",
of course). 

A tag is a small program that interprets its input, as any program must.
JSTL and struts tags access data from classes *only* via accessor functions.

--
Tim Slattery
[EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to