mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
19 lines
429 B
Java
19 lines
429 B
Java
package org.briarproject.android;
|
|
|
|
import org.briarproject.android.controller.SetupController;
|
|
|
|
/**
|
|
* This class exposes the SetupController and offers the possibility to
|
|
* override it.
|
|
*/
|
|
public class TestSetupActivity extends SetupActivity {
|
|
|
|
public SetupController getController() {
|
|
return setupController;
|
|
}
|
|
|
|
public void setController(SetupController setupController) {
|
|
this.setupController = setupController;
|
|
}
|
|
}
|