Skip to content

Instantly share code, notes, and snippets.

@6desislava6
Created November 27, 2015 06:06
Show Gist options
  • Save 6desislava6/03b87d9d6f14dda056f3 to your computer and use it in GitHub Desktop.
Save 6desislava6/03b87d9d6f14dda056f3 to your computer and use it in GitHub Desktop.
public interface UICalculatorInterface {
void inputTwoNumbers();
void invalidArgument(String number, boolean first);
void invalidArguments(String numberFirst, String numberSecond);
void zeroDivision();
void outOfRange(int number);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment