Package com.lightcrafts.app.menu

Source Code of com.lightcrafts.app.menu.ManageTemplatesMenuItem

/* Copyright (C) 2005-2011 Fabio Riccardi */

package com.lightcrafts.app.menu;

import com.lightcrafts.app.ComboFrame;
import com.lightcrafts.ui.templates.TemplateList;

import java.awt.event.ActionEvent;

class ManageTemplatesMenuItem extends UpdatableMenuItem {

    ManageTemplatesMenuItem(ComboFrame frame) {
        super(frame, "ManageTemplate");
    }

    public void actionPerformed(ActionEvent event) {
        ComboFrame frame = getComboFrame();
        TemplateList.showDialog(frame);
    }
}
TOP

Related Classes of com.lightcrafts.app.menu.ManageTemplatesMenuItem

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.