vivekkoya / classfiles

Static fields of the parent class should not be accessed through child class instances JAVA-W1030
Anti-pattern
Major
a year agoa year old
EXIT_ON_CLOSE should be accessed through WindowConstants, not JFrame
 46	 * Create the frame.
 47	 */
 48	public ShapeDisplayer() {
 49		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 50		setBounds(100, 100, 650, 650);
 51		final GridBagLayout gridBagLayout = new GridBagLayout();
 52		gridBagLayout.columnWidths = new int[] { 1, 0 };