On Wed, Mar 5, 2008 at 2:57 PM, Wes Wannemacher <[EMAIL PROTECTED]> wrote:
> If you are going to parameterize the collections that are
> used, you will find that not all of them can be parameterized (such as
> the Map that represents the HTTP session), but you can Annotate them
> with @SuppressWarnings("unchecked") (or whichever annotation it is).
Actually those can even be done properly by typing them as:
Map<String,?> session
But it needs to be changed in the Interface (as well as defining
SessionMap extends Map<String,?>)
(*Chris*)
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]