package causation.lab; /** *

* This class implements a Causality Lab in which the only functions * that are available are MOVE and ARROW, as well as SUBMIT and HELP. *

* Copyright 1999 by David Danks. All rights reserved. *

* * @see LabApplet * @version 0.9 Aug 18, 1999 * @author David Danks */ public class GraphLabApplet extends LabApplet { /** * Null constructor. Shouldn't ever be used */ public GraphLabApplet() { ; } /** * Calls LabApplet.init(), and then disables functions */ public void init() { super.init(); // lp is the lab panel lp.setModeEnabled(Workbench.SETUP_GATHER_MODE, false); lp.setToolEnabled(Workbench.LATENT, false); lp.setToolEnabled(Workbench.INDEPENDENCE, false); } }