You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
259 B
Java

// InsetPanel.java (C) I. A. Robin, K. J. Turner 08/11/00
package simulator;
import java.awt.*;
public class InsetPanel extends Panel {
public InsetPanel() {
}
public Insets getInsets() {
return new Insets(0, 10, 0, 10);
}
}