Package com.powsybl.action.dsl
Interface ActionDslLoaderObserver
-
- All Superinterfaces:
ContingencyDslObserver
- All Known Implementing Classes:
DefaultActionDslLoaderObserver
public interface ActionDslLoaderObserver extends ContingencyDslObserver
- Author:
- Geoffroy Jamgotchian
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
actionFound(String actionId)
void
begin(String dslFile)
void
contingencyFound(String contingencyId)
void
end()
void
ruleFound(String ruleId)
-
-
-
Method Detail
-
begin
void begin(String dslFile)
- Specified by:
begin
in interfaceContingencyDslObserver
-
contingencyFound
void contingencyFound(String contingencyId)
- Specified by:
contingencyFound
in interfaceContingencyDslObserver
-
ruleFound
void ruleFound(String ruleId)
-
actionFound
void actionFound(String actionId)
-
end
void end()
- Specified by:
end
in interfaceContingencyDslObserver
-
-