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.
279 lines
5.1 KiB
279 lines
5.1 KiB
#warning |
|
//// 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 ICSharpCode.SharpDevelop.Dom; |
|
// |
|
//namespace ICSharpCode.SharpDevelop.Tests.Utils |
|
//{ |
|
// public class MockMethod : IMethod |
|
// { |
|
// string name = String.Empty; |
|
// |
|
// public MockMethod(string name) |
|
// { |
|
// this.name = name; |
|
// } |
|
// |
|
// public string Name { |
|
// get { |
|
// return name; |
|
// } |
|
// } |
|
// |
|
// public IClass DeclaringType { get; set; } |
|
// public bool IsConst { get; set; } |
|
// public bool IsPrivate { get; set; } |
|
// public bool IsOverridable { get; set; } |
|
// |
|
// public IList<ITypeParameter> TypeParameters { |
|
// get { |
|
// return new ITypeParameter[0]; |
|
// } |
|
// } |
|
// |
|
// public bool IsConstructor { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsOperator { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public IList<string> HandlesClauses { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public IList<IParameter> Parameters { |
|
// get { |
|
// return new IParameter[0]; |
|
// } |
|
// } |
|
// |
|
// public bool IsExtensionMethod { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public string FullyQualifiedName { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public IReturnType DeclaringTypeReference { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// set { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public DomRegion Region { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public string Namespace { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public string DotNetName { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public IReturnType ReturnType { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// set { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public DomRegion BodyRegion { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public IList<ExplicitInterfaceImplementation> InterfaceImplementations { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public ModifierEnum Modifiers { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public IList<IAttribute> Attributes { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public string Documentation { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsAbstract { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsSealed { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsStatic { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsVirtual { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsPublic { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsProtected { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsInternal { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsReadonly { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsProtectedAndInternal { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsProtectedOrInternal { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsOverride { |
|
// get { |
|
// return false; |
|
// } |
|
// } |
|
// |
|
// public bool IsFrozen { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public void Freeze() |
|
// { |
|
// throw new NotImplementedException(); |
|
// } |
|
// |
|
// public IMember GenericMember { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsNew { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public bool IsSynthetic { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public object UserData { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// set { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public IMember CreateSpecializedMember() |
|
// { |
|
// throw new NotImplementedException(); |
|
// } |
|
// |
|
// public bool IsAccessible(IClass callingClass, bool isClassInInheritanceTree) |
|
// { |
|
// return !IsPrivate; |
|
// } |
|
// |
|
// public int CompareTo(object obj) |
|
// { |
|
// throw new NotImplementedException(); |
|
// } |
|
// |
|
// public object Clone() |
|
// { |
|
// throw new NotImplementedException(); |
|
// } |
|
// |
|
// public ISyntaxTree SyntaxTree { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public IProjectContent ProjectContent { |
|
// get { |
|
// throw new NotImplementedException(); |
|
// } |
|
// } |
|
// |
|
// public EntityType EntityType { |
|
// get { return EntityType.Method; } |
|
// } |
|
// } |
|
//}
|
|
|