Skip to content

Instantly share code, notes, and snippets.

@l-ray
Created May 2, 2014 11:33
Show Gist options
  • Save l-ray/11472845 to your computer and use it in GitHub Desktop.
Save l-ray/11472845 to your computer and use it in GitHub Desktop.
package de.lray.intercom.pattern;
public interface Strategy {
void execute(Integer number);
Integer[] getResult();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment