
edu.stanford.smi.protege.resource.BlankIcon 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.resource;
import java.awt.*;
import javax.swing.*;
/**
* TODO Class Comment
* @author Ray Fergerson
*/
class BlankIcon implements Icon {
public void paintIcon(Component c, Graphics g, int x, int y) {
// do nothing
}
public int getIconWidth() {
return 18;
}
public int getIconHeight() {
return 18;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy