Uses of Class
net.kolls.railworld.io.MetaData

Packages that use MetaData
net.kolls.railworld.edit Components related to the map editor module. 
net.kolls.railworld.io File I/O support for maps and games. 
net.kolls.railworld.opening Classes used to start the game. 
net.kolls.railworld.play Classes used for playing Rail World. 
 

Uses of MetaData in net.kolls.railworld.edit
 

Constructors in net.kolls.railworld.edit with parameters of type MetaData
EditFrame(RailSegment[] lines, java.awt.image.BufferedImage source, MetaData md)
          Create an edit frame.
 

Uses of MetaData in net.kolls.railworld.io
 

Methods in net.kolls.railworld.io with parameters of type MetaData
static RailSegment[] YardReader.read(java.io.File f, MetaData toBeFilled)
          Reads a valid Yard Duty file.
static RailSegment[] RWMReader.read(java.io.File f, MetaData toBeFilled)
          Reads from an RWM file and returns the rail segments and updates the given metadata.
static RailSegment[] RWMReader.read(java.net.URL f, MetaData toBeFilled)
          Reads from an RWM file and returns the rail segments.
static void RWMWriter.write(RailSegment[] la, MetaData md, java.io.File f)
          Saves rail segments and associated metadata in the RWM format.
static void RWGWriter.write(RailSegment[] la, Trains trs, ScriptManager sm, MetaData md, java.io.File f)
          Saves the current game state (trains, dynamic track configuration, visual orientation) to a Rail World Game file.
 

Uses of MetaData in net.kolls.railworld.opening
 

Methods in net.kolls.railworld.opening that return MetaData
 MetaData MetaDataPanel.getMD()
          If the panel is editable, this can be used to get the current information on the panel.
 MetaData MapLoader.getMetaData()
           
 

Constructors in net.kolls.railworld.opening with parameters of type MetaData
MapLoader(RailSegment[] la, MetaData mmd)
          Protected constructor.
MetaDataPanel(MetaData m, Script[] scrs, boolean editable)
          Displays a panel with given information.
 

Uses of MetaData in net.kolls.railworld.play
 

Constructors in net.kolls.railworld.play with parameters of type MetaData
PlayFrame(RailSegment[] lines, java.awt.image.BufferedImage source, MetaData md, ScriptManager sm)
          Create a new play frame.