Explicit ADocList<Parameter> instead of ADocList.
This commit is contained in:
parent
7fa36a5561
commit
c9de09aa2f
|
@ -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``.
|
||||||
|
|
|
@ -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``.
|
||||||
|
|
|
@ -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``.
|
||||||
|
|
|
@ -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``.
|
||||||
|
|
|
@ -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``.
|
||||||
|
|
Loading…
Reference in New Issue