package osp; import java.util.Locale; import osp.ui.OSPE_MainFrame; /** * This class is the main class of the OSP Editor. It initializes the * application, creates the main frame with all the panels included in it, and * creates the field of view. */ public class OSPEditor { public static void main(String[] args) { Locale.setDefault(Locale.ENGLISH); FieldOfView fov = new FieldOfView(); new OSPE_MainFrame(fov); } }