Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DocTypeFullMemberFormatter.cs « Formatters « Updater « Mono.Documentation « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c370b5d9fe0de6d2e2c41e3d2b78ddc47e3b5da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace Mono.Documentation.Updater
{
    class DocTypeFullMemberFormatter : MemberFormatter
    {
        private static MemberFormatter defaultFormatter;
        public static MemberFormatter Default
        {
            get
            {
                if (defaultFormatter == null)
                    defaultFormatter = new DocTypeFullMemberFormatter(MDocUpdater.Instance.TypeMap);

                return defaultFormatter;
            }
        }

        public DocTypeFullMemberFormatter(TypeMap map) : base(map) { }

        protected override string NestedTypeSeparator
        {
            get { return "+"; }
        }
    }
}