package utils; public class DocumentContent extends CategoryNode { private String content; private List categories = new ArrayList(); public DocumentContent(String name, String type) { super(name, type); } public void setContent(String content) { this.content = content; } public String getContent() { return content; } }