Skip to content

Instantly share code, notes, and snippets.

@Mishco
Created December 9, 2022 12:41
Show Gist options
  • Select an option

  • Save Mishco/a51a84ac45fc3483d743c53f60fc455f to your computer and use it in GitHub Desktop.

Select an option

Save Mishco/a51a84ac45fc3483d743c53f60fc455f to your computer and use it in GitHub Desktop.
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