2009-06-05 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / class / Mono.Cecil / Mono.Cecil / IReflectionVisitor.cs
1 //
2 // IReflectionVisitor.cs
3 //
4 // Author:
5 //   Jb Evain (jbevain@gmail.com)
6 //
7 // (C) 2005 Jb Evain
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 namespace Mono.Cecil {
30
31         public interface IReflectionVisitor {
32
33                 void VisitModuleDefinition (ModuleDefinition module);
34                 void VisitTypeDefinitionCollection (TypeDefinitionCollection types);
35                 void VisitTypeDefinition (TypeDefinition type);
36                 void VisitTypeReferenceCollection (TypeReferenceCollection refs);
37                 void VisitTypeReference (TypeReference type);
38                 void VisitMemberReferenceCollection (MemberReferenceCollection members);
39                 void VisitMemberReference (MemberReference member);
40                 void VisitInterfaceCollection (InterfaceCollection interfaces);
41                 void VisitInterface (TypeReference interf);
42                 void VisitExternTypeCollection (ExternTypeCollection externs);
43                 void VisitExternType (TypeReference externType);
44                 void VisitOverrideCollection (OverrideCollection meth);
45                 void VisitOverride (MethodReference ov);
46                 void VisitNestedTypeCollection (NestedTypeCollection nestedTypes);
47                 void VisitNestedType (TypeDefinition nestedType);
48                 void VisitParameterDefinitionCollection (ParameterDefinitionCollection parameters);
49                 void VisitParameterDefinition (ParameterDefinition parameter);
50                 void VisitMethodDefinitionCollection (MethodDefinitionCollection methods);
51                 void VisitMethodDefinition (MethodDefinition method);
52                 void VisitConstructorCollection (ConstructorCollection ctors);
53                 void VisitConstructor (MethodDefinition ctor);
54                 void VisitPInvokeInfo (PInvokeInfo pinvk);
55                 void VisitEventDefinitionCollection (EventDefinitionCollection events);
56                 void VisitEventDefinition (EventDefinition evt);
57                 void VisitFieldDefinitionCollection (FieldDefinitionCollection fields);
58                 void VisitFieldDefinition (FieldDefinition field);
59                 void VisitPropertyDefinitionCollection (PropertyDefinitionCollection properties);
60                 void VisitPropertyDefinition (PropertyDefinition property);
61                 void VisitSecurityDeclarationCollection (SecurityDeclarationCollection secDecls);
62                 void VisitSecurityDeclaration (SecurityDeclaration secDecl);
63                 void VisitCustomAttributeCollection (CustomAttributeCollection customAttrs);
64                 void VisitCustomAttribute (CustomAttribute customAttr);
65                 void VisitGenericParameterCollection (GenericParameterCollection genparams);
66                 void VisitGenericParameter (GenericParameter genparam);
67                 void VisitMarshalSpec (MarshalSpec marshalSpec);
68
69                 void TerminateModuleDefinition (ModuleDefinition module);
70         }
71 }