Example #1
0
 /**
  * Set whether the geo is being traced or not
  *
  * @param trace the trace value
  */
 public static void setTrace(Traceable geo, boolean trace) {
   geo.setTrace(trace);
 }
Example #2
0
 /**
  * Get the trace value of the geo
  *
  * @return true if the geo is traceable and being traced
  */
 public static boolean getTrace(Traceable geo) {
   return geo.getTrace();
 }