public abstract class DvdTitle { private String title; public void setTitle(String titleIn) { this.title = titleIn; } public String getTitle() { return this.title; } }