Package cranks.undo

Examples of cranks.undo.ConstructionProcedure


      mfInstance.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
      mfInstance.addWindowListener(new MainFrameWindowAdapter(mfInstance));
    }
   
    //Instantiate ConstructionProcedure - used as an edit listener
    constructProcedure = new ConstructionProcedure(mfInstance);
   
    //Create and set up the content pane
    mfInstance.createMenuBar(); //also initializes & registers the MenuActions
    drawPanel = new DrawingPanel(mfInstance, objects, mechanism);
    mfInstance.setContentPane(drawPanel);
View Full Code Here

TOP

Related Classes of cranks.undo.ConstructionProcedure

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.