com.jidesoft.swing.OverlayTextField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
/*
* @(#)OverlayableTextField.java 8/10/2007
*
* Copyright 2002 - 2007 JIDE Software Inc. All rights reserved.
*/
package com.jidesoft.swing;
import javax.swing.*;
import javax.swing.text.Document;
public class OverlayTextField extends JTextField {
public OverlayTextField() {
}
public OverlayTextField(String text) {
super(text);
}
public OverlayTextField(int columns) {
super(columns);
}
public OverlayTextField(String text, int columns) {
super(text, columns);
}
public OverlayTextField(Document doc, String text, int columns) {
super(doc, text, columns);
}
@Override
public void repaint(long tm, int x, int y, int width, int height) {
super.repaint(tm, x, y, width, height);
OverlayableUtils.repaintOverlayable(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy