| DelegatingPointHistory.java |
package lectures.inheritance_vs_delegation.abstract_methods;
import util.annotations.WebDocuments;
import lectures.arrays.collections_kinds.extra.PointHistory;
import lectures.graphics.Point;
@WebDocuments({"Lectures/InheritanceVsDelegationAbstractMethods.pptx", "Lectures/InheritanceVsDelegationAbstractMethods.pdf", "Videos/InheritanceVsDelegationAbstractMethods.avi"})
public interface DelegatingPointHistory extends PointHistory {
public Point createPoint(int x, int y);
}