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

📄 bookinfo.java

📁 j2se程序
💻 JAVA
字号:
/*
 * Created on 2005-5-19
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */

/**
 * @author ade
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class BookInfo {
	private String bookName;
	private int bookID;
	private String bookAuthor;
	private int bookAvailable;
	private int bookTotal;
	
	public String getBookName(){
		return bookName;
	}
	
	public int getBookID(){
		return bookID;
	}
	
	public String getBookAuthor(){
		return bookAuthor;
	}
	
	public int getBookAvailable(){
		return bookAvailable;
	}
	
	public int getBookTotal(){
		return bookTotal;
	}
	public void setBookName( String name ){
		bookName = name;
	}
	
	public void setBookID( int id ){
		bookID = id;
	}
	
	public void setBookAuthor( String author ){
		bookAuthor = author;
	}
	
	public void setBookTotal( int total ){
		bookTotal = total;
	}
	
	public void setBookAvailable( int available ){
		bookAvailable = available;
	}
 }

⌨️ 快捷键说明

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