// Java Name - // Self-Created Bug Tracing Worksheet #1 Period - // THIS WORKSHEET WAS CREATED BY:_______________________ in the year ________ // Use the Bug & Location classes from the current unit of study to // create a worksheet that other students can trace. import java.awt.Color; public class BugTracing1 { public static void main(String[] args) { Bug flik = new Bug(); // include 10-15 statements here like: flik.turn(); and flik.move(); System.out.println("\nFLIK AFTER"); System.out.println(flik.getColor()); System.out.println(flik.getDirection()); System.out.println(flik.getLocation()); } }