BareBright.java 413B

1234567891011121314151617181920
  1. /**
  2. * Write a description of class BareBright here.
  3. *
  4. * @author (your name)
  5. * @version (a version number or a date)
  6. */
  7. public class BareBright extends Product
  8. {
  9. // instance variables - replace the example below with your own
  10. /**
  11. * Constructor for objects of class BareBright
  12. */
  13. public BareBright(String id, float price, int quantity){
  14. super(id, price, quantity);
  15. }
  16. }