1234567891011121314151617181920212223 |
- /**
- * Sets the tool tip text.
- *
- * @param text the text of the tool tip
- */
- public void setToolTipText(String text) {
- }
- /**
- * Registers the text to display in a tool tip. The text
- * displays when the cursor lingers over the component.
- *
- * @param text the string to display. If the text is null,
- * the tool tip is turned off for this component.
- */
- public void setToolTipText(String text) {
- }
- int level, size;
- int level; // indentation level
- int size; // size of table
|