예제 #1
0
 public TableParser([NotNull] ITable target, [NotNull] ITableNavigator navigator)
 {
     this.target    = target;
     this.navigator = navigator;
 }
예제 #2
0
 public TableBuilder([NotNull] ITable target, [NotNull] ITableNavigator navigator, [CanBeNull] IStyle style = null)
 {
     this.target    = target;
     this.navigator = navigator;
     styles         = new Stack <IStyle>(new[] { style });
 }