Skip to content

Instantly share code, notes, and snippets.

@Guilherme-HRamos
Last active July 28, 2019 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Guilherme-HRamos/f15cf29ee6f150b05ec25d5d186f81dd to your computer and use it in GitHub Desktop.
Save Guilherme-HRamos/f15cf29ee6f150b05ec25d5d186f81dd to your computer and use it in GitHub Desktop.
Medium - Android/Java Interfaces like a Boss! - Markers (Interfaces)
public interface LogCatLogger extends Logger {
}
public interface Logger {
void logMessage(String message);
}
public interface SystemsLogger extends Logger {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment