1234567891011121314151617181920 |
-
- /**
- * Write a description of class BareBright here.
- *
- * @author (your name)
- * @version (a version number or a date)
- */
- public class BareBright extends Product
- {
- // instance variables - replace the example below with your own
-
-
- /**
- * Constructor for objects of class BareBright
- */
- public BareBright(String id, float price, int quantity){
- super(id, price, quantity);
- }
- }
|