Tagged Questions

96
votes
39answers
10k views

Why do people use Java?

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
256 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
49 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 ...