Skip to content
Snippets Groups Projects
Commit f5750f62 authored by Ashmore, Michael (Capt)'s avatar Ashmore, Michael (Capt)
Browse files

Replace ExampleTrackInterpolationAshmore.java

parent b1cf5762
No related branches found
No related tags found
No related merge requests found
......@@ -183,7 +183,7 @@ public class ExampleTrackInterpolationAshmore extends ExampleSimulationProgramAs
}
catch (InterruptedException iex) // handle any exception that your code might choose to provoke!
{
Logger.getLogger(ExampleTrackInterpolationDuran.class.getName()).log(Level.SEVERE, null, iex);
Logger.getLogger(ExampleTrackInterpolationAshmore.class.getName()).log(Level.SEVERE, null, iex);
}
}
......@@ -194,7 +194,7 @@ public class ExampleTrackInterpolationAshmore extends ExampleSimulationProgramAs
* @param directionEntity current direction
* @return same object to permit progressive setters
*/
public ExampleTrackInterpolationDuran reportPdu(int simulationLoopCount, Vector3Double location, EntityStatePdu.Direction directionEntity)
public ExampleTrackInterpolationAshmore reportPdu(int simulationLoopCount, Vector3Double location, EntityStatePdu.Direction directionEntity)
{
System.out.println (String.format("%2d ", simulationLoopCount) + "Entity location=(" +
String.format("%4.1f", location.getX()) + ", " +
......@@ -218,11 +218,11 @@ public class ExampleTrackInterpolationAshmore extends ExampleSimulationProgramAs
*/
public static void main(String[] args)
{
TRACE_PREFIX = "[" + ExampleTrackInterpolationDuran.class.getName() + "] ";
TRACE_PREFIX = "[" + ExampleTrackInterpolationAshmore.class.getName() + "] ";
System.out.println(TRACE_PREFIX + "main() started...");
thisProgram = new ExampleTrackInterpolationDuran(); // creates instance of self within static main() method
thisProgram = new ExampleTrackInterpolationAshmore(); // creates instance of self within static main() method
thisProgram.handleArgs (args); // process command-line invocation arguments
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment