~ubuntu-branches/ubuntu/edgy/monodevelop/edgy

« back to all changes in this revision

Viewing changes to Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Ambience/IAmbience.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-08-18 00:51:23 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060818005123-5iit07y0j7wjg55f
Tags: 0.11+svn20060818-0ubuntu1
* New SVN snapshot
  + Works with Gtk# 2.9.0
* debian/control:
  + Updated Build-Depends
* debian/patches/use_nunit2.2.dpatch,
  debian/patches/use_real_libs.dpatch:
  + Updated
* debian/patches/versioncontrol_buildfix.dpatch:
  + Fix build failure in the version control addin

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
                ShowParameterNames     = 1,
21
21
                ShowAccessibility      = 16,
22
22
                UseFullyQualifiedNames = 2,
23
 
                ShowModifiers          = 4,
 
23
                ShowMemberModifiers          = 4,
24
24
                ShowInheritanceList    = 8,
25
25
                IncludeHTMLMarkup      = 32,
26
26
                UseLinkArrayList       = 64,
27
27
                QualifiedNamesOnlyForReturnTypes = 128,
28
28
                IncludeBodies          = 256,
29
 
                IncludePangoMarkup         = 512,
 
29
                IncludePangoMarkup     = 512,
 
30
                ShowClassModifiers     = 1024,
 
31
                ShowGenericParameters  = 2048,
30
32
                
31
33
                StandardConversionFlags = ShowParameterNames | 
32
34
                                          UseFullyQualifiedNames | 
33
 
                                          ShowModifiers,
 
35
                                          ShowMemberModifiers |
 
36
                                          ShowClassModifiers |
 
37
                                          ShowGenericParameters,
34
38
                                          
35
39
                All = ShowParameterNames | 
36
40
                      ShowAccessibility | 
37
41
                      UseFullyQualifiedNames |
38
 
                      ShowModifiers | 
39
 
                      ShowInheritanceList,
 
42
                      ShowMemberModifiers |
 
43
                      ShowClassModifiers |
 
44
                      ShowInheritanceList |
 
45
                      ShowGenericParameters,
 
46
 
40
47
                      
41
48
                AssemblyScoutDefaults = StandardConversionFlags |
42
49
                                        ShowAccessibility |     
43
50
                                        QualifiedNamesOnlyForReturnTypes |
44
51
                                        IncludeHTMLMarkup |
45
 
                                        UseLinkArrayList,
46
 
        }
47
 
        
48
 
        public interface IAmbience
49
 
        {
50
 
                ConversionFlags ConversionFlags {
51
 
                        get;
52
 
                        set;
53
 
                }
54
 
                
55
 
                string Convert(ModifierEnum modifier);
56
 
                
57
 
                string Convert(IClass c);
58
 
                string ConvertEnd(IClass c);
59
 
                
60
 
                string Convert(IIndexer c);
61
 
                string Convert(IField field);
62
 
                string Convert(IProperty property);
63
 
                string Convert(IEvent e);
64
 
                
65
 
                string Convert(IMethod m);
66
 
                string ConvertEnd(IMethod m);
67
 
                
68
 
                string Convert(IParameter param);
69
 
                string Convert(IReturnType returnType);
70
 
                
71
 
                string WrapAttribute(string attribute);
72
 
                string WrapComment(string comment);
73
 
                
74
 
                string GetIntrinsicTypeName(string dotNetTypeName);
75
 
                
76
 
                ArrayList LinkArrayList { get; set; }
 
52
                                        UseLinkArrayList |
 
53
                                        ShowGenericParameters,
77
54
        }
78
55
}