Interface ShuntCompensatorAdder

All Superinterfaces:
IdentifiableAdder<ShuntCompensator,ShuntCompensatorAdder>, InjectionAdder<ShuntCompensator,ShuntCompensatorAdder>

public interface ShuntCompensatorAdder extends InjectionAdder<ShuntCompensator,ShuntCompensatorAdder>
To create a shunt compensator, from a VoltageLevel instance call the VoltageLevel.newShuntCompensator() method to get a shunt compensator builder instance.

Example:

    VoltageLevel vl = ...
    ShuntCompensator s = vl.newShunt()
            .setId("s1")
            ...
        .add();
Author:
Geoffroy Jamgotchian <geoffroy.jamgotchian at rte-france.com>
See Also: