⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 music.java

📁 音乐播放器 好像是用java编的 欢迎下载
💻 JAVA
字号:
package musicmgrsys;

public class Music {
    private String format;
    private String gerue;
    private int rating;
    private String evaluation;
    private String title;
    private String director;
    private int year;
    private String comments;
    private String location;

    public Music() {
        format = null;
        gerue = null;
        rating = 0;
        evaluation = null;
        title = null;
        director = null;
        year = 0;
        comments = null;
        location = null;
    }

    public void setFormat(String f)
    {
        this.format = f;
    }

    public void setGerue(String g)
    {
        this.gerue = g;
    }

    public void setRating(int r)
    {
        this.rating = r;
    }

    public void setEvaluation(String e)
    {
        this.evaluation = e;
    }

    public void setTitle(String t)
    {
        this.title = t;
    }

    public void setDirector(String d)
    {
        this.director = d;
    }

    public void setYear(int y)
    {
        this.year = y;
    }

    public void setComments(String c)
    {
        this.comments = c;
    }

    public void setLocation(String l)
    {
        this.location = l;
    }

    public String getFormat()
    {
        return this.format;
    }

    public String getGerue()
    {
        return this.gerue;
    }

    public int getRating()
    {
        return this.rating;
    }

    public String getEvaluation()
    {
        return this.evaluation;
    }

    public String getTitle()
    {
        return this.title;
    }

    public String getDirector()
    {
        return this.director;
    }

    public int getYear()
    {
        return this.year;
    }

    public String getComments()
    {
        return this.comments;
    }

    public String getLocation()
    {
        return this.location;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -