If you wanted to keep the "closed" variable, I often use something like:

return Boolean.TRUE.equals(closed);

which returns false should closed by null;

On 3 September 2011 16:30, Gunnar Eketrapp <gunnar.eketr...@gmail.com> wrote:
> Yea for sure that was exactly the problem.
>
> I changed closed to a closedDate and isClosed to
>
>    @Transient
>    public boolean isClosed() {
>        return closedDate != null;
>    }
>
> so now I also now when the ledger was closed.
>
> Thank you for "bearing with me" ...

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to