iitem.java

来自「基于Struts的网络商店源码。使用Hibernate技术」· Java 代码 · 共 59 行

JAVA
59
字号
package com.sush.webstore.store.domain;

public interface IItem {

	/**
	 * @return the description
	 */
	String getDescription();

	/**
	 * @param description
	 *            the description to set
	 */
	void setDescription(String description);

	/**
	 * @return the id
	 */
	long getId();

	/**
	 * @return the name
	 */
	String getName();

	/**
	 * @param name
	 *            the name to set
	 */
	void setName(String name);

	/**
	 * @return the price
	 */
	Double getPrice();

	/**
	 * @param price
	 *            the price to set
	 */
	void setPrice(Double price);

	/**
	 * @return the images
	 */
	IImages getIImages();

	/**
	 * @return the available
	 */
	boolean isAvailable();

	/**
	 * @param available
	 *            the available to set
	 */
	void setAvailable(boolean available);
}

⌨️ 快捷键说明

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