Package org.dbwiki.web.ui.printer.schema

Examples of org.dbwiki.web.ui.printer.schema.SchemaNodePrinter


          new SchemaMenuPrinter(request));
      contentGenerator.put(
          DatabaseWikiContentGenerator.ContentObjectLink,
          new SchemaPathPrinter(request));
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new SchemaNodePrinter(request, _layouter));
    } else if ((isIndexRequest) || (request.type().isDelete())) { // ||
                                    // (action.actionInsert()))
                                    // {
      contentGenerator.put(
          DatabaseWikiContentGenerator.ContentTimemachine,
          new TimemachinePrinter(request));
      contentGenerator.put(DatabaseWikiContentGenerator.ContentMenu,
          new SchemaMenuPrinter(request));
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
          new SchemaNodePrinter(request, _layouter));
    } else if (request.type().isCreateSchemaNode()
        && request.schema().isGroup()) {
      // FIXME #schemaversioning: only display the option to create a new
      // schema node if we're viewing a group?
      contentGenerator.put(DatabaseWikiContentGenerator.ContentContent,
View Full Code Here

TOP

Related Classes of org.dbwiki.web.ui.printer.schema.SchemaNodePrinter

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.