아직 개념이 안잡혀서 그런지 애매해서요~
한빛미디어의 안드로이드 프로그래밍 정복 예제중 서비스 부분에서
브로드캐스트 리시버 부분인데요

public class FreeBR extends BroadcastReceiver {
 public void onReceive(Context context, Intent intent) {
  Intent intent2 = new Intent(context, DownHtml.class);  
  intent2.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  context.startActivity(intent2);
 }
}


이 부분에서 Context의 의미가 무엇인지 알고싶어서요~