package javax.swing; import java.awt.*; public class JToolTip extends JComponent { String text; JToolTip(String text) { this.text = text; } }