public int getX() { // easy return xPosition; } ---- public int getY() { // should start in column 1 return yPosition; } public int getY() // C style braces { return yPosition; } ---- if (x < y) { int temp = x; x = y; y = temp; } // no indentation private void attachListenersToComponents() { // more difficult runButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent event) { runButton.setEnabled(false); timer.schedule(new Strobe(), 0, 40); } }); } ---- This is a test for "negative" indentation { This should be indented } This should not be indented } Nor this { Nor this { but this should be indented again } and this should be back in column 1 ---- if (x < y) { min = x; } else { // 5 points extra credit if this line is NOT indented min = y; }