ButtonApp3 (other files are same as before): ButtonRight.java

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class ButtonRight extends ArrowButton {
    public ButtonRight (Square square) {
	super (square, Square.ButtonAction.RIGHT, Direction.RIGHTARROW); //*1 Supply relevant args to superclasses
    }
}

[download file]