Skip to content

Instantly share code, notes, and snippets.

@stalep
Created August 19, 2013 16:17
Show Gist options
  • Save stalep/6270936 to your computer and use it in GitHub Desktop.
Save stalep/6270936 to your computer and use it in GitHub Desktop.
aeshcommand thoughts
@InjectCommand
AeshCommand command
public interface Command {
void execute() throws IOException;
}
vs
public interface Command {
void execute(AeshCommand aeshCommand) throws IOException;
}
@gastaldi
Copy link

what is the relation of AeshCommand and Command in the first example?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment