You've already forked linux-packaging-mono
Imported Upstream version 5.4.0.167
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
This commit is contained in:
parent
e49d6f06c0
commit
536cd135cc
31
external/api-doc-tools/monodoc/Monodoc/generator.cs
vendored
Normal file
31
external/api-doc-tools/monodoc/Monodoc/generator.cs
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Monodoc
|
||||
{
|
||||
// All type of documents that a generator may find as input
|
||||
public enum DocumentType {
|
||||
EcmaXml, // Our main monodoc format
|
||||
EcmaSpecXml,
|
||||
Man,
|
||||
AddinXml,
|
||||
MonoBook, // This is mostly XHTML already, just need a tiny bit of processing
|
||||
Html,
|
||||
TocXml, // Used by help source displaying some kind of toc of the content they host
|
||||
PlainText,
|
||||
ErrorXml
|
||||
}
|
||||
|
||||
/* This interface defines a set of transformation engine
|
||||
* that convert multiple documentation source to a single output format
|
||||
*/
|
||||
public interface IDocGenerator<TOutput>
|
||||
{
|
||||
/* This method is responsible for finding out the documentation type
|
||||
* for the given ID and use the right engine internally
|
||||
* The id can be accompanied by a context dictionary giving away extra
|
||||
* informtion to the renderer
|
||||
*/
|
||||
TOutput Generate (HelpSource hs, string internalId, Dictionary<string, string> context);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user