Package com.nanolaba.surtur.gui.actions

Examples of com.nanolaba.surtur.gui.actions.OpenFileAction


                if (!settings.getLastOpenedFiles().isEmpty()) {
                    removeAll();

                    for (File file : settings.getLastOpenedFiles()) {
                        if (file.exists()) {
                            OpenFileAction action = new OpenFileAction(file.getName(), file);
                            action.setFileReader(fileReader);
                            action.setSettings(settings);
                            add(new JMenuItem(action));
                        }
                    }
                }
            }
View Full Code Here

TOP

Related Classes of com.nanolaba.surtur.gui.actions.OpenFileAction

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.