Issue 149: Blank versus Empty title
Project Member Reported by jeff.johnston.mn@gmail.com, Sep 26, 2008
If I use a white space, the property name is used.  In ColumnImpl:

   public String getTitle() {
       if (StringUtils.isBlank(title)) {
           return ViewUtils.camelCaseToWord(property);
       }

       return title;
   }

Maybe it should be StringUtils.isEmpty() instead?  

**********************************************************
 What I want to do then is make this an option and have isEmpty() be the
alternative. If I just outright change it then it may cause a lot of tables
to be incorrect now. I will add this as a preferences change.