Interface SubstationAdder

All Superinterfaces:
IdentifiableAdder<Substation,SubstationAdder>

public interface SubstationAdder extends IdentifiableAdder<Substation,SubstationAdder>
To create a substation, from a Network instance call the Network.newSubstation() method to get a substation builder instance.

Example:

    Network n = ...
    Substation s = n.newSubstation()
            .setId("s1")
            ...
        .add();
Author:
Geoffroy Jamgotchian <geoffroy.jamgotchian at rte-france.com>
See Also: