Skip to content

Instantly share code, notes, and snippets.

@tomasmalmsten
Created October 31, 2013 11:33
Show Gist options
  • Save tomasmalmsten/7248200 to your computer and use it in GitHub Desktop.
Save tomasmalmsten/7248200 to your computer and use it in GitHub Desktop.
How to create a factory for strategies without using if's - Strategy.java
package com.tomasmalmsten.examples.strategy;
public interface Strategy {
void execute();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment