Exemple #1
0
 public InitializedField(FieldInfo field,
                         ComponentFinderAttribute finder, ComponentDecoratorAttribute[] decorators)
     : base(finder, decorators)
 {
     this.field = field;
 }
Exemple #2
0
 public InitializedProperty(PropertyInfo property,
                            ComponentFinderAttribute finder, ComponentDecoratorAttribute[] decorators)
     : base(finder, decorators)
 {
     this.property = property;
 }
Exemple #3
0
 public InitializedMember(ComponentFinderAttribute finder, ComponentDecoratorAttribute[] decorators)
 {
     this.finder     = finder;
     this.decorators = decorators;
 }
 public InitializedProperty(PropertyInfo property,
     ComponentFinderAttribute finder, ComponentDecoratorAttribute[] decorators)
     : base(finder, decorators)
 {
     this.property = property;
 }
 public InitializedMember(ComponentFinderAttribute finder, ComponentDecoratorAttribute[] decorators)
 {
     this.finder = finder;
     this.decorators = decorators;
 }
 public InitializedField(FieldInfo field,
     ComponentFinderAttribute finder, ComponentDecoratorAttribute[] decorators)
     : base(finder, decorators)
 {
     this.field = field;
 }