Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. import org.jinspired.probes.strategy.*;
  2. import org.jinspired.probes.*;
  3.  
  4. public final class StrategyFactory implements ProbesStrategyFactory {
  5.  
  6. public void init(Probes.Environment env) {/*..*/}
  7. public ProbesStrategy create(Probes.Context context) {/*..*/}
  8.  
  9. private static final class Strategy implements ProbesStrategy {
  10.  
  11. public int vote(Probes.Probe probe) { /*..*/ }
  12.  
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement