Possible Duplicate:
What does this tilde mean?
I am using IntelliJ and found that it can re-factor my code of the following
Handle<String> handle = new Handler<String>() {}
to Handler<String> handler = new Handler<~>() {}
what's the meaning of ~ in the above?