- /**
- * Outline methods for
grades
- *
- * @author TK Rogers
- * @version 02-17-09
- */
public interface Grades {
- //
Note: methods in interfaces have no code
- // or curly
brackets. The code must be written in
- // the
class implementing the interface.
public double gpa ( ) ;
}