@Override
 protected String compute() {
   AppNameAnnotationModel annotationModel = appNameAnnotationModel.getValue();
   attachListener(annotationModel);
   if (annotationModel != null) {
     AppNameAnnotation a = annotationModel.getSelectedAppAnnotation();
     if (a != null) {
       return a.getText();
     }
   }
   return null;
 }