ButtonApp4: ButtonRight.java

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

public class ButtonRight extends ArrowButton {
    ButtonRight (Model model) {
	super (model, Square.ButtonAction.RIGHT, Direction.RIGHTARROW); //*1 Same as previous, except saves model not square
    }
}

[download file]