Java Stop Execution
System.exit(0);
// Always stops your program from executing any further.
Chase_Exists
System.exit(0);
// Always stops your program from executing any further.
public void onClick() {
if(condition == true) {
return;
}
string.setText("This string should not change if condition = true");
}