Interface LineAdder

All Superinterfaces:
BranchAdder<Line,LineAdder>, IdentifiableAdder<Line,LineAdder>

public interface LineAdder extends BranchAdder<Line,LineAdder>
To create a new AC line, from a Network instance call the Network.newLine() method to get a line builder instance.

Example:

    Network n = ...
    Line l = n.newLine()
            .setId("l1")
            ...
        .add();
Author:
Geoffroy Jamgotchian <geoffroy.jamgotchian at rte-france.com>
See Also: