Examples of PenTool


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
Copyright © 2018 www.massapi.com. 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.