edu.stanford.smi.protege.util.AbstractValidatableComponent 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.util;
import java.awt.*;
import javax.swing.*;
/**
* Base class to match up the {@link Validatable} interface to a swing JComponent
*
* @author Ray Fergerson
*/
public abstract class AbstractValidatableComponent extends JComponent implements Validatable {
private static final long serialVersionUID = 666034875206228219L;
public Component getComponent() {
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy