Interface LoadAdder

All Superinterfaces:
IdentifiableAdder<Load,LoadAdder>, InjectionAdder<Load,LoadAdder>

public interface LoadAdder extends InjectionAdder<Load,LoadAdder>
To create a load, from a VoltageLevel instance call the VoltageLevel.newLoad() method to get a load builder instance.

Example:

    VoltageLevel vl = ...
    Load l = vl.newLoad()
            .setId("l1")
            ...
        .add();
Author:
Geoffroy Jamgotchian <geoffroy.jamgotchian at rte-france.com>
See Also: