All Packages  Class Hierarchy  This Package  Previous  Next  Index
  Interface eduni.simjava.Sim_output
  -  public interface Sim_output
 
This defines the interface that a trace output class must provide.
    -  See Also:
    
 -  Sim_system
 
  
  -  
	close()
   -  Called by the Sim_system at the end of the simulation.
  
 -  
	initialise()
   -  Called by the Sim_system before the start of the simulation.
  
 -  
	println(String)
   -  Called by the Sim_system to output a trace line.
 
  
initialise
 public abstract void initialise()
  -  Called by the Sim_system before the start of the simulation.
 
println
 public abstract void println(String msg)
  -  Called by the Sim_system to output a trace line.
  
    -  Parameters:
    
 -  msg - The trace message
  
 
 
 
close
 public abstract void close()
  -  Called by the Sim_system at the end of the simulation.
 
All Packages  Class Hierarchy  This Package  Previous  Next  Index