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

📄 catalogitem.java

📁 Sample Hibernate Shopping Cart Application
💻 JAVA
字号:
/*
 * @(#)CatalogItem.java $LastChangedRevision$ $LastChangedDate$
 * Created on March 23, 2005
 *
 * Copyright (c) 2005, Daniel Watrous
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or 
 * without modification, are governed by the license found in
 * the following places:
 * license.txt included with this distribution, or
 * http://www.simplecart.org/license.html
 * 
 */

package org.simplecart.shopcart.catalog;

import org.simplecart.base.Persistent;

/**
 * 
 * @version     $LastChangedRevision$ $LastChangedDate$
 * @author      Daniel Watrous
 *
 */
public interface CatalogItem extends Persistent {
    /**
     * tell whether the implementing CatalogItem can
     * be displayed to end consumers
     * @return boolean true if consumer visible
     */
    public boolean isConsumerVisible();
    public String getName();
    public void setName(String name);
    public String getDescription();
    public void setDescription(String description);
    public SearchUtility getSearchDetails();
}

⌨️ 快捷键说明

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