/*
Copyright (C) 2014-2019 de4dot@gmail.com
This file is part of dnSpy
dnSpy is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
dnSpy is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with dnSpy. If not, see .
*/
using dnlib.DotNet;
namespace dnSpy.Contracts.Documents.TreeView {
///
/// Creates
///
public interface IDocumentTreeNodeProvider {
///
/// Creates a
///
/// Assembly
///
AssemblyDocumentNode CreateAssembly(IDsDotNetDocument asmDocument);
///
/// Creates a
///
/// Module
///
ModuleDocumentNode CreateModule(IDsDotNetDocument modDocument);
///
/// Creates a
///
/// Assembly reference
/// Owner module
///
AssemblyReferenceNode Create(AssemblyRef asmRef, ModuleDef ownerModule);
///
/// Creates a
///
/// Module reference
///
ModuleReferenceNode Create(ModuleRef modRef);
///
/// Creates an event
///
/// Method
///
MethodNode CreateEvent(MethodDef method);
///
/// Creates a property
///
/// Method
///
MethodNode CreateProperty(MethodDef method);
///
/// Creates a
///
/// Name
///
NamespaceNode Create(string name);
///
/// Creates a non-nested
///
/// Type
///
TypeNode Create(TypeDef type);
///
/// Creates a nested
///
/// Type
///
TypeNode CreateNested(TypeDef type);
///
/// Creates a
///
/// Method
///
MethodNode Create(MethodDef method);
///
/// Creates a
///
/// Property
///
PropertyNode Create(PropertyDef property);
///
/// Creates a
///
/// Event
///
EventNode Create(EventDef @event);
///
/// Creates a
///
/// Field
///
FieldNode Create(FieldDef field);
}
}