📜  java 停止脚本 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:15.264000             🧑  作者: Mango

代码示例1
public void onClick() {
    if(condition == true) {
        return;
    }
    string.setText("This string should not change if condition = true");
}