Created
December 9, 2022 12:41
-
-
Save Mishco/a51a84ac45fc3483d743c53f60fc455f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public interface Notifier { | |
| void alertWeatherConditions(String weatherConditions); | |
| } | |
| public class Email implements Notifier { | |
| @Override | |
| public void alertWeatherConditions(String weatherConditions) { | |
| if (weatherConditions == "sunny"); | |
| System.out.print("It is sunny"); | |
| } | |
| } | |
| public class Mobile implements Notifier { | |
| @Override | |
| public void alertWeatherConditions(String weatherConditions) { | |
| if (weatherConditions == "rainy") | |
| System.out.print("It is rainy"); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment