Package org.dbwiki.web.ui.printer

Examples of org.dbwiki.web.ui.printer.LayoutEditor


            DatabaseWikiContentGenerator.ContentContent,
            new VersionIndexPrinter(request));
      } else if (request.type().isLayout()) { // Editing the layout
        contentGenerator.put(
            DatabaseWikiContentGenerator.ContentContent,
            new LayoutEditor(request));
      } else if (request.type().isPasteForm()) { // Pasting XML data from
                            // a URL
        contentGenerator.put(
            DatabaseWikiContentGenerator.ContentContent,
            new InputFormPrinter(request, "Copy & Paste",
View Full Code Here


    } else if ((request.type().isCreate()) || (request.type().isEdit())) {
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new PageUpdateFormPrinter(request));
    } else if (request.type().isLayout()) {
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new LayoutEditor(request));
    } else if (request.type().isStyleSheet()) {
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new FileEditor(request, "Edit style sheet"));
    } else if (request.type().isTemplate()) {
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
View Full Code Here

TOP

Related Classes of org.dbwiki.web.ui.printer.LayoutEditor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.