From c015d586d22b69078b6da61858e5675793856b0b Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 25 May 2008 08:10:13 +0000 Subject: JAutoDoc :) --- sources/simulator/VSMain.java | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'sources/simulator/VSMain.java') diff --git a/sources/simulator/VSMain.java b/sources/simulator/VSMain.java index bdfd631..79a0a7e 100644 --- a/sources/simulator/VSMain.java +++ b/sources/simulator/VSMain.java @@ -1,3 +1,7 @@ +/* + * VS is (c) 2008 by Paul C. Buetow + * vs@dev.buetow.org + */ package simulator; import java.awt.*; @@ -7,20 +11,47 @@ import events.*; import prefs.*; import prefs.editors.*; +// TODO: Auto-generated Javadoc +/** + * The Class VSMain. + */ public class VSMain { + + /** + * Instantiates a new vS main. + * + * @param prefs the prefs + */ public VSMain(VSPrefs prefs) { init(prefs, null); } + /** + * Instantiates a new vS main. + * + * @param prefs the prefs + * @param relativeTo the relative to + */ public VSMain(VSPrefs prefs, Component relativeTo) { init(prefs, relativeTo); } + /** + * Inits the. + * + * @param prefs the prefs + * @param relativeTo the relative to + */ private void init(VSPrefs prefs, Component relativeTo) { VSSimulatorFrame simulatorFrame = new VSSimulatorFrame(prefs, relativeTo); new VSEditorFrame(prefs, relativeTo, new VSSimulatorEditor(prefs, simulatorFrame)); } + /** + * The main method. + * + * @param args the arguments + */ public static void main(String[] args) { try { UIManager.setLookAndFeel( -- cgit v1.2.3