0 / 60 seg.

What does the following Java code snippet demonstrate?

class Book {
    private String author;
    private void setAuthor(String author) {
        this.author = author;
    }
}