Package org.jdraw.swing

Examples of org.jdraw.swing.TaggedMenuItem.addActionListener()


      for (File f : recentFiles.getRecentFiles()) {
        TaggedMenuItem mi = new TaggedMenuItem();
        mi.setTag(f);
        mi.setText(f.getName());
        mi.setToolTipText(f.getAbsolutePath());
        mi.addActionListener(menuActionListener);
        menuRecentFiles.add(mi);
      }
    }
  }
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.