GtfsSuggestion.kt 415 B

1234567891011121314151617
  1. package ml.adamsprogs.bimba.models.suggestions
  2. import android.content.Context
  3. abstract class GtfsSuggestion(val name: String) : Comparable<GtfsSuggestion> {
  4. abstract fun getIcon(): Int
  5. abstract fun getColour(): Int
  6. abstract fun getBgColour(): Int
  7. abstract fun getBody(context: Context): String
  8. abstract override fun equals(other: Any?): Boolean
  9. abstract override fun hashCode(): Int
  10. }