edu.stanford.smi.protege.action.SaveProjectAs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protege Show documentation
Show all versions of protege Show documentation
Core code for the Protege ontology editor. Serves as the basis for the Protege-Frames and Protege-OWL editors.
package edu.stanford.smi.protege.action;
import java.awt.event.*;
import edu.stanford.smi.protege.resource.*;
/**
* Save the current project with a different name.
*
* @author Ray Fergerson
*/
public class SaveProjectAs extends LocalProjectAction {
private static final long serialVersionUID = -5273205867017864675L;
public SaveProjectAs() {
super(ResourceKey.PROJECT_SAVE_AS);
}
public void actionPerformed(ActionEvent event) {
getProjectManager().saveProjectAsRequest();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy