All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.smi.protege.action.MergeIncludedProjects Maven / Gradle / Ivy

Go to download

Core code for the Protege ontology editor. Serves as the basis for the Protege-Frames and Protege-OWL editors.

There is a newer version: 3.5.1
Show newest version
package edu.stanford.smi.protege.action;

import java.awt.event.*;

import edu.stanford.smi.protege.resource.*;

/**
 * This action removes the "inclusion" flag from all frames.  When the current
 * project is saved it will then contain copies of the frames of all the included projects.
 *
 * @author    Ray Fergerson 
 */
public class MergeIncludedProjects extends LocalProjectAction {

    private static final long serialVersionUID = 7160764923461936150L;

    public MergeIncludedProjects() {
        super(ResourceKey.PROJECT_MERGE_INCLUDED);
    }

    public void actionPerformed(ActionEvent event) {
        getProjectManager().mergeIncludedProjectsRequest();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy