Generation

generate functionSat, 06 May 2023

Elaborar un programa que permita mostrar un catálogo de canciones : Se debe utilizar una clase Song Se debe utilizar la interfaz clase ArrayList para almacenar los datos Se debe implementar el ordenamiento y la búsqueda de elementos mediante los métodos de la colección ArrayList

public class Song { private String title; private String author; private String album; private int duration; private String genre; private String year; public Song(String title, String author, String album, int duration, String genre, String year) { this.title = title; this.author = author; this.album = album; this.duration = duration; this.genre = genre; this.year = year; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String getAlbum() { return album; } public void setAlbum(String album) { this.album = album; } public int getDuration() { return duration; }

Want to kickstart your project?Use the new AI Studio to create your code