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

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

public class ButtonSmaller extends TextButton {
    public ButtonSmaller (Square square) {
	super (square, Square.ButtonAction.SMALLER, "Smaller"); //*1 Supply relevant args to superclasses
    }
}

[download file]