| java.lang.Object de.uka.ilkd.key.strategy.StrategyFactory
StrategyFactory | abstract public class StrategyFactory implements Named(Code) | | Interface for creating Strategy instances.
The strategy name and the name of the strategy factory are assumed to be the same
(you have to refactor if you want to change this).
|
create | public static Strategy create(Proof proof, String name, StrategyProperties strategyProperties)(Code) | | Create the strategy with the specified name.
If there is no strategy with the specified name, this method behaves as
if the name of the default strategy was given.
Parameters: proof - the proof for which the strategy is to be created Parameters: name - the name of the strategy the strategy |
create | abstract public Strategy create(Proof proof, StrategyProperties strategyProperties)(Code) | | Create strategy for a proof.
Parameters: proof - the Proof a strategy is created for Parameters: strategyProperties - the StrategyProperties to customize the strategy the newly created strategy |
|
|