/**
  * Display name for the creation action. This should be presented as an item in a menu.
  *
  * @return the name of the action
  */
 public String getName() {
   String s = item.getName();
   if (FormEditor.getFormSettings().getShortBeanNames()) {
     int index = s.lastIndexOf('.');
     if (index != -1) return s.substring(index + 1);
   }
   return s;
 }