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

📄 book.java

📁 Begining JSP Web Development外文书籍源代码
💻 JAVA
字号:
package com.wrox.begjsp.model2;

public class Book {
  String ISBN;
  String bookTitle;
  float price;
  int quantity;

  public Book() {
    ISBN="";
    bookTitle="";
    price =(float)0.0;
    quantity=0;
  }

  public void setISBN(String ISBN) {
    this.ISBN=ISBN;
  }
  public String getISBN() {
    return this.ISBN;
  }
  public void setBookTitle(String bookTitle) {
    this.bookTitle=bookTitle;
  }
  public String getBookTitle() {
    return this.bookTitle;
  }
  public void setPrice(float price) {
    this.price=price;
  }
  public float getPrice() {
    return this.price;
  }
  public void setQuantity(int quantity) {
    this.quantity=quantity;
  }
  public int getQuantity() {
    return this.quantity;
  }
}

⌨️ 快捷键说明

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