0 / 60 seg.

What does the following Java code demonstrate?

class Book {
    private String title;
    public Book(String title) {
        this.title = title;
    }
    public String getTitle() {
        return title;
    }
}