Package state.classes

Examples of state.classes.PenTool


   
    JMenuItem lines = new JMenuItem("Linien");
    toolMenu.add(lines);
    lines.addActionListener(new ActionListener() {
        public void actionPerformed( ActionEvent e ) {
          content.setTool(new PenTool(content));
        }
    });
   
    JMenuItem rect = new JMenuItem("Rechtecke");
    toolMenu.add(rect);
View Full Code Here

TOP

Related Classes of state.classes.PenTool

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.