Getter and Setters not working?

后端 未结 9 2022
悲&欢浪女
悲&欢浪女 2021-01-27 02:12

I\'ve got two classes right now: RemindersDAO.java and ViewLocalReminders.java.

I\'m trying to get access to a variable that\'s in ViewLocalReminders.java and I\'m tryin

9条回答
  •  臣服心动
    2021-01-27 02:25

    try using this

    this.remainderId = id;
    

    instead of

    remainderId = id;
    

    in your model or domain.

提交回复
热议问题