mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
3.9 KiB
150 lines
3.9 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
using System.Collections.ObjectModel; |
|
|
|
namespace ICSharpCode.SharpDevelop.Dom |
|
{ |
|
public interface IClass : IEntity |
|
{ |
|
/// <summary> |
|
/// Region of the whole class including the body. |
|
/// </summary> |
|
DomRegion Region { |
|
get; |
|
} |
|
|
|
/// <summary> |
|
/// The default return type to use for this class. |
|
/// This property is mutable even when the IClass is frozen, see |
|
/// documentation for <see cref="HasCompoundClass"/>. |
|
/// This property is thread-safe. |
|
/// </summary> |
|
IReturnType DefaultReturnType { get; } |
|
|
|
ClassType ClassType { |
|
get; |
|
} |
|
|
|
/// <summary> |
|
/// Gets the using scope of contains this class. |
|
/// </summary> |
|
IUsingScope UsingScope { |
|
get; |
|
} |
|
|
|
IList<IReturnType> BaseTypes { |
|
get; |
|
} |
|
|
|
IList<IClass> InnerClasses { |
|
get; |
|
} |
|
|
|
IList<IField> Fields { |
|
get; |
|
} |
|
|
|
IList<IProperty> Properties { |
|
get; |
|
} |
|
|
|
IList<IMethod> Methods { |
|
get; |
|
} |
|
|
|
IList<IEvent> Events { |
|
get; |
|
} |
|
|
|
IEnumerable<IMember> AllMembers { |
|
get; |
|
} |
|
|
|
IList<ITypeParameter> TypeParameters { |
|
get; |
|
} |
|
|
|
/// <summary> |
|
/// Returns the list of all classes that this class inherits from (directly or indirectly). |
|
/// If this property is used on part of a partial class, it will also return classes inherited in other parts. |
|
/// </summary> |
|
IEnumerable<IClass> ClassInheritanceTree { |
|
get; |
|
} |
|
|
|
IEnumerable<IClass> ClassInheritanceTreeClassesOnly { |
|
get; |
|
} |
|
|
|
IClass BaseClass { |
|
get; |
|
} |
|
|
|
IReturnType BaseType { |
|
get; |
|
} |
|
|
|
/// <summary> |
|
/// If this is a partial class, gets the compound class containing information from all parts. |
|
/// If this is not a partial class, a reference to this class is returned. |
|
/// </summary> |
|
IClass GetCompoundClass(); |
|
|
|
IClass GetInnermostClass(int caretLine, int caretColumn); |
|
|
|
List<IClass> GetAccessibleTypes(IClass callingClass); |
|
|
|
/// <summary> |
|
/// Searches the member with the specified name. Returns the first member/overload found. |
|
/// </summary> |
|
IMember SearchMember(string memberName, LanguageProperties language); |
|
|
|
/// <summary>Return true if the specified class is a base class of this class; otherwise return false.</summary> |
|
/// <remarks>Returns false when possibleBaseClass is null.</remarks> |
|
bool IsTypeInInheritanceTree(IClass possibleBaseClass); |
|
|
|
bool HasPublicOrInternalStaticMembers { |
|
get; |
|
} |
|
bool HasExtensionMethods { |
|
get; |
|
} |
|
|
|
bool IsPartial { |
|
get; |
|
} |
|
|
|
/// <summary> |
|
/// Gets/sets if this class has an associated compound class. |
|
/// This property is mutable even if the IClass instance is frozen. |
|
/// This property is thread-safe. |
|
/// |
|
/// This property may only be set by the IProjectContent implementation to which this class is added. |
|
/// |
|
/// Rational: some languages support partial classes where only one of the parts needs |
|
/// the "partial" modifier. If the part without the modifier is added to the project |
|
/// content first, it is added without compound class and may get a DefaultReturnType that refers |
|
/// to itself. |
|
/// However, when the other part with the modifier is added, a compound class is created, and the |
|
/// DefaultReturnType of this class must change even though it is frozen. |
|
/// </summary> |
|
bool HasCompoundClass { |
|
get; |
|
set; |
|
} |
|
|
|
/// <summary> |
|
/// Gets whether a default constructor should be added to this class if it is required. |
|
/// Such automatic default constructors will not appear in IClass.Methods, but will be present |
|
/// in IClass.DefaultReturnType.GetMethods(). |
|
/// </summary> |
|
/// <remarks>This way of creating the default constructor is necessary because |
|
/// we cannot create it directly in the IClass - we need to consider partial classes.</remarks> |
|
bool AddDefaultConstructorIfRequired { |
|
get; |
|
} |
|
} |
|
}
|
|
|