1
vote
4
votes
Placement of instance variable declarations
because of "Program to an 'interface', not an 'implementation'." (Gang of Four 1995:18) (http://en.wi …
1
vote
Good reasons to prohibit inheritance in Java?
you might want to make immutable objects (http://en.wikipedia.org/wiki/Immutable_object), you might want to create a singl …
5
votes
How to determine build architecture (32bit / 64bit) with ant?
you can get at the java system properties (http://java.sun.com/javase/6/docs/api/java/lang/System. …
0
votes
What do you need to do Unit testing in Java with Eclipse?
fit (http://www.theserverside.com/news/thread.tss?thread_id=39417)
dbunit ( …
4
votes
Best Web applications framework for Java?
i like grails, but there are a lot of these things out there, matt raible sems to have a good handle on them:
…
1
vote
Java generics - passing a collection of subtype to a method requiring a collection of base type
as jon s says:
private void foo (Map <String, ? extends List> in { ... }
will fix the errors. you will still have warnings though. take a look the get-put pr …
0
votes
Is there any other strongly-integrated presentation layer tool other than JSF/JSP for Java EE?
grails (http://www.grails.org/) or griffon (http://griffon.codehaus.org/) may be of int …
0
votes
RECENT Java References?
i've always liked cay horstmann's books: http://www.horstmann.com/corejava.html. these are 8'th editions. and there is gosling's …
0
votes
What are your impressions of Maven?
matt raible has a blog entry http://raibledesigns.com/rd/entry/comprehensive_project_intelli …
1
vote
is there a merged iterator implementation?
there's one in groovy: http://groovy.codehaus.org/Iterator+Tricks - you can probably roll one up like this with a few more li …
-1
votes
How to refer to the outer class in another instance of a non-static inner class?
yes:
public class Foo {
public class Bar {
public Foo getMyFoo() {
return Foo.this;
}
}
public Foo foo(Bar bar) {
return bar.getMyFoo …
3
votes
When overriding equals in Java, why does it not work to use a parameter other than Object?
there are different types of http://en.wikipedia.org/wiki/Polymorphism_(computer_science). java does not do …
1
vote
A computer science student needs help selecting topic for thesis [j2ee]
take a look at the presentations on java web frameworks here: http://static.raibledesigns.com/repository/presentat …
0
votes
How to increment a java String through all the possibilities?
you can use big integer's toString(radix) method like:
import java.math.BigInteger;
public class Strings {
Strings(final int digits,final int radix) {
this(digits,radix,Big …
