comparison Implab/Components/IInitializable.cs @ 190:1c2a16d071a7 v2

Слияние с ref20160224
author cin
date Fri, 22 Apr 2016 13:08:08 +0300
parents d6a8cba73acc
children 8200ab154c8a
comparison
equal deleted inserted replaced
161:2a8466f0cb8a 190:1c2a16d071a7
9 public interface IInitializable { 9 public interface IInitializable {
10 /// <summary> 10 /// <summary>
11 /// Completes initialization. 11 /// Completes initialization.
12 /// </summary> 12 /// </summary>
13 /// <remarks> 13 /// <remarks>
14 /// Normally virtual shouldn't be called from the constructor, due to the incomplete object state, but 14 /// Normally virtual methods shouldn't be called from the constructor, due to the incomplete object state, but
15 /// they can be called from this method. This method is also usefull when we constructing a complex grpah 15 /// they can be called from this method. This method is also usefull when we constructing a complex grpah
16 /// of components where cyclic references may take place. 16 /// of components where cyclic references may take place.
17 /// </remarks> 17 /// </remarks>
18 void Init(); 18 void Init();
19 } 19 }