Re: Accessing properties

2003-11-20 Thread Kris Schneider
Right. It's easy to forget (or to never have looked), but Properties extends Hashtable which implements Map... Quoting "K.C. Baltz" <[EMAIL PROTECTED]>: > I'm not sure if EL handles properties, but if it's going to work like a > HashMap, it'll look like this: > > ${applicationScope.props["viewe

Re: Accessing properties

2003-11-20 Thread K.C. Baltz
I'm not sure if EL handles properties, but if it's going to work like a HashMap, it'll look like this: ${applicationScope.props["viewer.tool.useZoomIn"]} That should get around the problem of the "."s in the name. K.C. John C Cartwright wrote: Hello All, I'm trying to use the value of a pro

Accessing properties

2003-11-20 Thread John C Cartwright
Hello All, I'm trying to use the value of a property in a element. I have the Properties object in application scope, but I can't seem to figure out how (of if) I can address the individual property value of a given key. Something like props.get("viewer.tool.useZoomIn") in a scriptlet. I th