
com.anrisoftware.prefdialog.simpledialog.RestoreAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prefdialog-dialog Show documentation
Show all versions of prefdialog-dialog Show documentation
Dialogs that are containing the annotated field components.
The newest version!
/*
* Copyright 2012-2016 Erwin Müller
*
* This file is part of prefdialog-dialog.
*
* prefdialog-dialog is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* prefdialog-dialog is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with prefdialog-dialog. If not, see .
*/
package com.anrisoftware.prefdialog.simpledialog;
import static com.anrisoftware.prefdialog.simpledialog.SimpleDialog.RESTORE_ACTION_NAME;
import java.awt.event.ActionEvent;
import com.anrisoftware.prefdialog.miscswing.actions.AbstractResourcesAction;
/**
* Restores the input of the dialog.
*
* @author Erwin Mueller, [email protected]
* @since 3.0
*/
@SuppressWarnings("serial")
class RestoreAction extends AbstractResourcesAction {
private SimpleDialog dialog;
RestoreAction() {
super(RESTORE_ACTION_NAME);
}
public void setDialog(SimpleDialog dialog) {
this.dialog = dialog;
}
@Override
public void actionPerformed(ActionEvent evt) {
dialog.restoreDialog();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy