Skip to content
Snippets Groups Projects
Select Git revision
  • 0088bc1daa0938e4ef27587a7ced5b273eefb3cb
  • master default
2 results

ContextStrategy.java

Blame
  • user avatar
    Nicolas Fley authored
    0088bc1d
    History
    ContextStrategy.java 194 B
    package Core;
    
    import Exception.ExceptionUnknownStartegyType;
    
    public interface ContextStrategy {	
    	public abstract void setStrategy(String strategyName) throws ExceptionUnknownStartegyType;
    
    }