Home | History | Annotate | Download | only in controller

Lines Matching defs:intent

3 import android.content.Intent;
16 protected Intent intent;
21 public ComponentController(T component, Intent intent) {
23 this.intent = intent;
41 public Intent getIntent() {
42 Intent intent = this.intent == null ? new Intent(RuntimeEnvironment.application, component.getClass()) : this.intent;
43 if (intent.getComponent() == null) {
44 intent.setClass(RuntimeEnvironment.application, component.getClass());
46 return intent;