Source of NameAndPayInterface.java


  1: //NameAndPayInterface.java
  2: //Interface containing two methods common to other classes

  4: public interface NameAndPayInterface
  5: {
  6:     public String getName();
  7:     public double getGrossWage();
  8: }