허접한 질문을 드려 송구스럽습니다.

"헬로, 안드로이드"라는 책에 버튼 클릭설정하는 부분인데요.

아래의 빨간색으로 this 표시된 부분은 어떤 역할을 하나요? 자바 this 키워드 인가요?

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;

public class Sudoku extends Activity implements OnClickListener {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    View continueButton = this.findViewById(R.id.continue_button);
    continueButton.setOnClickListener(this);
    View newButton = this.findViewById(R.id.new_button);
    newButton.setOnClickListener(this);
    View aboutButton = this.findViewById(R.id.about_button);
    aboutButton.setOnClickListener(this);
    View exitButton = this.findViewById(R.id.exit_button);
    exitButton.setOnClickListener(this);
    }
    public void onClick(View v){
     switch (v.getId()){
     case R.id.about_button:
      Intent i = new Intent(this, About.class);
      startActivity(i);
      break;
      // 버튼이 더 있다면 이곳에 입력된다.
     }
    }
}