The this keyword is basicly used to refference to the particular
instance of a Object.
The easiest example is variable names:
If you had a global variable Object called Bob
Object bob;
and you had a method that had accepted a Object in it's method signiture
public void methodName(Object bob){...}
You can do something like this
public void methodName(Object bob){
this.bob = bob;
}