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
try using this
this.remainderId = id;
instead of
remainderId = id;
in your model or domain.