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

📄 cd.java

📁 用jsf实现cd商店的程序
💻 JAVA
字号:
package com.tangjun.web.pojo;

// default package



/**
 * CD generated by MyEclipse - Hibernate Tools
 */

public class CD extends AbstractCD  implements java.io.Serializable {


     /** default constructor */
    public CD() {
    }

	/** minimal constructor */
    public CD(CDType cdtype) {
        this.cdtype = cdtype;
    }
    
    /** full constructor */
    public CD(CDType cdtype, String artist, String specialTitle, float price) {
        this.cdtype = cdtype;
        this.artist = artist;
        this.specialTitle = specialTitle;
        this.price = price;
    }
    
    public CD(String artist, String specialTitle, float price)
    {
    	this.artist = artist;
        this.specialTitle = specialTitle;
        this.price = price;
    }

}

⌨️ 快捷键说明

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