Exemplo n.º 1
0
        /**
         * Creates a new DocumentElement with the given category and title.
         *
         * @param category
         *            the category for this element.
         * @param textTitle
         *            the title of this element, predominantly used with DOCUMENT
         *            and SECTION types.
         */

        public DocumentElement(IDocumentCategory category, string textTitle)
        {
            this.setCategory(category);
            setTitle(textTitle);
        }
Exemplo n.º 2
0
 public DocumentCategoryController(IDocumentCategory documentCategory)
 {
     _documentCategory = documentCategory;
 }