| PointInheritingFromLocatable.java |
package lectures.inheritance.is_a;
import util.annotations.WebDocuments;
/**
* This interface adds no extra methods- it merely reuses the declarations from
* Locatable.
*
*
*/
@WebDocuments({"Lectures/InheritanceIsA.pptx", "Lectures/InheritanceIsA.pdf", "Videos/InheritanceIsA.avi"})
public interface PointInheritingFromLocatable extends Locatable{
}
/*
*
*
* (T/F) It can make sense for a type that extends another type to have an empty body.
*
* THE END
*/