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

📄 bookeditform.java

📁 struts+ejb开发简单借书系统,用的是mysql数据库.
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package de.laliluna.tutorial.library.struts.form;

import org.apache.struts.action.ActionForm;

import de.laliluna.tutorial.library.entity.interfaces.BookValue;
import de.laliluna.tutorial.library.view.BookView;
import de.laliluna.tutorial.library.view.UserView;

/** 
 * MyEclipse Struts
 * Creation date: 08-21-2007
 * 
 * XDoclet definition:
 * @struts.form name="bookEditForm"
 */
public class BookEditForm extends ActionForm {
	private BookView bookView = new BookView();

	public BookView getBookView() {
		return bookView;
	}

	public void setBookView(BookView bookView) {
		this.bookView = bookView;
	}

	public boolean authorHasBeenSet() {
		return bookView.authorHasBeenSet();
	}

	public boolean availableHasBeenSet() {
		return bookView.availableHasBeenSet();
	}

	public Object clone() throws CloneNotSupportedException {
		return bookView.clone();
	}

	public boolean equals(BookValue that) {
		return bookView.equals(that);
	}

	public boolean equals(Object other) {
		return bookView.equals(other);
	}

	public String getAuthor() {
		return bookView.getAuthor();
	}

	public Boolean getAvailable() {
		return bookView.getAvailable();
	}

	public BookValue getBookValue() {
		return bookView.getBookValue();
	}

	public Integer getId() {
		return bookView.getId();
	}

	public Integer getPrimaryKey() {
		return bookView.getPrimaryKey();
	}

	public String getTitle() {
		return bookView.getTitle();
	}

	public Integer getUserId() {
		return bookView.getUserId();
	}

	public UserView getUserView() {
		return bookView.getUserView();
	}

	public int hashCode() {
		return bookView.hashCode();
	}

	public boolean idHasBeenSet() {
		return bookView.idHasBeenSet();
	}

	public boolean isIdentical(Object other) {
		return bookView.isIdentical(other);
	}

	public void setAuthor(String author) {
		bookView.setAuthor(author);
	}

	public void setAvailable(Boolean available) {
		bookView.setAvailable(available);
	}

	public void setBookValue(BookValue bookValue) {
		bookView.setBookValue(bookValue);
	}

	public void setId(Integer id) {
		bookView.setId(id);
	}

	public void setPrimaryKey(Integer primaryKey) {
		bookView.setPrimaryKey(primaryKey);
	}

	public void setTitle(String title) {
		bookView.setTitle(title);
	}

	public void setUserId(Integer userId) {
		bookView.setUserId(userId);
	}

	public void setUserView(UserView userView) {
		bookView.setUserView(userView);
	}

	public boolean titleHasBeenSet() {
		return bookView.titleHasBeenSet();
	}

	public String toString() {
		return bookView.toString();
	}

	public boolean userIdHasBeenSet() {
		return bookView.userIdHasBeenSet();
	}
}

⌨️ 快捷键说明

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