/* Copyright 2008 Theo Hultberg/Iconara */ package <%= base_package %>.models.domain { import <%= base_package %>.models.constant.DocumentType; /** * This class currently does nothing different from PlainDocument, but the idea * is that in the future it will support rich text documents. */ public class PlainDocument extends Document { public function PlainDocument() { documentType = DocumentType.PLAIN; } } }