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

📄 bookview.java

📁 struts+ejb开发简单借书系统,用的是mysql数据库.
💻 JAVA
字号:
package de.laliluna.tutorial.library.view;

import de.laliluna.tutorial.library.entity.interfaces.BookValue;

public class BookView {
	private BookValue bookValue = new BookValue();
	private UserView userView = new UserView();
		
	public boolean authorHasBeenSet() {
		return bookValue.authorHasBeenSet();
	}
	public boolean availableHasBeenSet() {
		return bookValue.availableHasBeenSet();
	}
	public Object clone() throws CloneNotSupportedException {
		return bookValue.clone();
	}
	public boolean equals(BookValue that) {
		return bookValue.equals(that);
	}
	public boolean equals(Object other) {
		return bookValue.equals(other);
	}
	public String getAuthor() {
		return bookValue.getAuthor();
	}
	public Boolean getAvailable() {
		return bookValue.getAvailable();
	}
	public Integer getId() {
		return bookValue.getId();
	}
	public Integer getPrimaryKey() {
		return bookValue.getPrimaryKey();
	}
	public String getTitle() {
		return bookValue.getTitle();
	}
	public Integer getUserId() {
		return bookValue.getUserId();
	}
	public int hashCode() {
		return bookValue.hashCode();
	}
	public boolean idHasBeenSet() {
		return bookValue.idHasBeenSet();
	}
	public boolean isIdentical(Object other) {
		return bookValue.isIdentical(other);
	}
	public void setAuthor(String author) {
		bookValue.setAuthor(author);
	}
	public void setAvailable(Boolean available) {
		bookValue.setAvailable(available);
	}
	public void setId(Integer id) {
		bookValue.setId(id);
	}
	public void setPrimaryKey(Integer primaryKey) {
		bookValue.setPrimaryKey(primaryKey);
	}
	public void setTitle(String title) {
		bookValue.setTitle(title);
	}
	public void setUserId(Integer userId) {
		bookValue.setUserId(userId);
	}
	public boolean titleHasBeenSet() {
		return bookValue.titleHasBeenSet();
	}
	public String toString() {
		return bookValue.toString();
	}
	public boolean userIdHasBeenSet() {
		return bookValue.userIdHasBeenSet();
	}
	
	public BookValue getBookValue()
	{
		return this.bookValue;
	}
	public void setBookValue(BookValue bookValue) {
		// TODO Auto-generated method stub
		this.bookValue = bookValue; 
	}
	
	public UserView getUserView() {
		return userView;
	}
	public void setUserView(UserView userView) {
		this.userView = userView;
	}
}

⌨️ 快捷键说明

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