Interface Item
-
- All Known Implementing Classes:
AudioPlayer,MoviePlayer,Product
public interface ItemThe item interface allows for polymorphism to be used with each implementation. It represents an item which has an ID, name, and manufacturer. Primarily used for the Products.- Author:
- Jairo Garciga
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetID()java.lang.StringgetManufacturer()java.lang.StringgetName()voidsetManufacturer(java.lang.String manufacturer)voidsetName(java.lang.String name)
-