Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class SongMitText(val smttitel : String,
- val smtinterpret : String,
- val smtspieldauer : Int,
- val smtbewertung : Int,
- val smttext : String) : Song(smttitel, smtinterpret, smtspieldauer, smtbewertung)
- {
- override fun suche(begriff : String) : Boolean
- {
- return titel.contains(begriff) || interpret.contains(begriff) || smttext.contains(begriff)
- }
- }
Advertisement