convex.gui.components.NonUpdatingCaret Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-gui Show documentation
Show all versions of convex-gui Show documentation
Convex desktop GUI and test applications
The newest version!
package convex.gui.components;
import java.awt.Rectangle;
import javax.swing.text.DefaultCaret;
@SuppressWarnings("serial")
public class NonUpdatingCaret extends DefaultCaret {
@Override
protected void adjustVisibility(Rectangle nloc) {
}
}