@Override public AuthorAnnotation newAnnotation() { AuthorAnnotation a = (AuthorAnnotation) super.newAnnotation(); a.setAuthor(author.getText()); return a; }
public void setAnnotation(AuthorAnnotation annotation) { super.setAnnotation(annotation); author.setText(annotation.getAuthor()); }