Tagged Questions

100
votes
39answers
11k views

Why do people use Java? [closed]

I've become very curious lately, what is it about Java that made it so popular? I've avoided learning it in detail because it seems like a very poor language at a very basic level. A good language ...
2
votes
2answers
287 views

Is it suggested to use h:outputText for everything?

I'm new to JSF (just started learning about it 4 days ago) and I'm a bit confused about the usage of h:outputText. I know that is a simple tag, but in most examples I've seen, it's used to output very ...
1
vote
8answers
2k views

multi-dimensional ArrayList

Just a very small question... I seem to run into too much complexity here: I have to realize an index-structure like {42, someString}. I tried: Object entry[][] = new Object[1][1]; ...
0
votes
2answers
55 views

More simple logic condition to check non-empty requirements

I have some simple logic to check if the field is valid: private boolean isValidIfRequired(Object value) { return (required && !isEmpty(value)) || !required; } it tells that the ...