protected void textEdited(FigText ft) throws PropertyVetoException {
   // super.textEdited(ft);
   MComponentInstance coi = (MComponentInstance) getOwner();
   if (ft == _name) {
     String s = ft.getText().trim();
     // why this???
     //       if (s.length()>0) {
     //         s = s.substring(0, (s.length() - 1));
     //       }
     ParserDisplay.SINGLETON.parseComponentInstance(coi, s);
   }
 }