Explicit ADocList<Parameter> instead of ADocList.

This commit is contained in:
Kolan Sh 2017-07-06 15:40:45 +03:00
parent 7fa36a5561
commit c9de09aa2f
5 changed files with 5 additions and 5 deletions

View File

@ -33,7 +33,7 @@ namespace LAview {
*/ */
public AddSpaces () {} public AddSpaces () {}
protected override ADocList create_default_instance () { return new AddSpaces (); } protected override ADocList<AddSpace> create_default_instance () { return new AddSpaces (); }
/** /**
* Gets a copy of the ``AddSpaces``. * Gets a copy of the ``AddSpaces``.

View File

@ -7,7 +7,7 @@ namespace LAview {
*/ */
public class ColParams : ADocList<ColParam> { public class ColParams : ADocList<ColParam> {
protected override ADocList create_default_instance () { return new ColParams (); } protected override ADocList<ColParam> create_default_instance () { return new ColParams (); }
/** /**
* Constructs a new empty ``ColParams``. * Constructs a new empty ``ColParams``.

View File

@ -5,7 +5,7 @@ namespace LAview {
*/ */
public class Glob : ADocList<IDoc> { public class Glob : ADocList<IDoc> {
protected override ADocList create_default_instance () { return new Glob (); } protected override ADocList<IDoc> create_default_instance () { return new Glob (); }
/** /**
* Constructs a new empty ``Glob``. * Constructs a new empty ``Glob``.

View File

@ -137,7 +137,7 @@ namespace LAview {
*/ */
public Row () {} public Row () {}
protected override ADocList create_default_instance () { return new Row (); } protected override ADocList<Cell> create_default_instance () { return new Row (); }
/** /**
* Gets a copy of the ``Row``. * Gets a copy of the ``Row``.

View File

@ -27,7 +27,7 @@ namespace LAview {
*/ */
public AddSpaces.Style style { get; set; } public AddSpaces.Style style { get; set; }
protected override ADocList create_default_instance () { return new Subtable (); } protected override ADocList<Row> create_default_instance () { return new Subtable (); }
/** /**
* Constructs a new empty ``Subtable``. * Constructs a new empty ``Subtable``.