Search Results

2
votes
1answer
143 views

Are selectOne and selectMany choices bounded by SelectItems?

Do the JSF selectOne and selectMany controls only allow submission of values defined in the given selectItems? I'm concerned about parameter spoofing, and if this was built-in, I wouldn't require …
15
votes

Java: Collections.emptyList() returns a List<Object>?

The issue you're encountering is that even though the method emptyList() returns List<T>, you haven't provided it with the type, so it defaults to returning Li …
3
votes

Resetting a field lazy-loaded with the double-check idiom

I think this should be safe, but only because you're storing the field in a local variable. After this is done, there's no way for the local variable reference to magically change to null, even if …
-1
votes

When overriding equals in Java, why does it not work to use a parameter other than Object?

You're assuming that the contains() method in List knows the type of the object at runtime, which is incorrect. Because of erasure, List<MyClass> …
0
votes

Vectors in Java, how to return multiple vectors in an object…

Sounds like this should be tagged "Homework". Okay, first of all, are you required to use all these Vectors, or is that your own decision? Though some may point out that using ArrayLists …