Mercurial > pub > bltoolkit
comparison Source/TypeBuilder/Builders/IAbstractTypeBuilder.cs @ 0:f990fcb411a9
Копия текущей версии из github
| author | cin |
|---|---|
| date | Thu, 27 Mar 2014 21:46:09 +0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:f990fcb411a9 |
|---|---|
| 1 using System; | |
| 2 | |
| 3 namespace BLToolkit.TypeBuilder.Builders | |
| 4 { | |
| 5 public interface IAbstractTypeBuilder | |
| 6 { | |
| 7 int ID { get; set; } | |
| 8 object TargetElement { get; set; } | |
| 9 | |
| 10 Type[] GetInterfaces(); | |
| 11 bool IsCompatible (BuildContext context, IAbstractTypeBuilder typeBuilder); | |
| 12 | |
| 13 bool IsApplied (BuildContext context, AbstractTypeBuilderList builders); | |
| 14 int GetPriority (BuildContext context); | |
| 15 void Build (BuildContext context); | |
| 16 } | |
| 17 } |
