package org.bodington.spring.easyedit;

public class EditCommand extends TextCommand
{
    private boolean notify;

    public boolean isNotify()
    {
        return notify;
    }

    public void setNotify(boolean notify)
    {
        this.notify = notify;
    }
}
