import java.awt.*; class SortableButton extends Button implements Comparable { public SortableButton(String s) { super (s); } public int compareTo(SortableButton other) { return (getLabel().compareTo(other.getLabel())); } }