Package lmnd.model.command

Source Code of lmnd.model.command.Edit

package lmnd.model.command;

import java.io.File;
import lmnd.view.EditDialog;

/**
*
*/
public class Edit implements Command {

    public void perform(CommandData data) throws Exception {
        File file = (File)data.getValue(Keys.FILE);
        if (file.isDirectory()) {
            return;
        }
        new EditDialog(file);
    }

    public void undo() {}
}
TOP

Related Classes of lmnd.model.command.Edit

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.