Main Page | Packages | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

org.objectweb.cjdbc.console.gui.jtools.JMultiLineToolTip Class Reference

List of all members.

Public Member Functions

 JMultiLineToolTip ()
void updateUI ()
void setColumns (int columns)
int getColumns ()
void setFixedWidth (int width)
int getFixedWidth ()

Protected Attributes

int columns = 0
int fixedwidth = 0

Detailed Description

This class defines a MultiLineToolTip

Author:
Nicolas Modrzyk

Zafir Anjum

Version:
1.0

Definition at line 45 of file JMultiLineToolTip.java.


Constructor & Destructor Documentation

org.objectweb.cjdbc.console.gui.jtools.JMultiLineToolTip.JMultiLineToolTip  ) 
 

Creates a new JMultiLineToolTip.java object

Definition at line 51 of file JMultiLineToolTip.java.

References org.objectweb.cjdbc.console.gui.jtools.JMultiLineToolTip.updateUI().

00052   {
00053     updateUI();
00054   }


Member Function Documentation

int org.objectweb.cjdbc.console.gui.jtools.JMultiLineToolTip.getColumns  ) 
 

getColumns method

Returns:
integer

Definition at line 80 of file JMultiLineToolTip.java.

00081   {
00082     return columns;
00083   }

int org.objectweb.cjdbc.console.gui.jtools.JMultiLineToolTip.getFixedWidth  ) 
 

getFixedWidth definition.

Returns:
integer

Definition at line 101 of file JMultiLineToolTip.java.

00102   {
00103     return fixedwidth;
00104   }

void org.objectweb.cjdbc.console.gui.jtools.JMultiLineToolTip.setColumns int  columns  ) 
 

Set number of columns for the tool tip

Parameters:
columns integer

Definition at line 69 of file JMultiLineToolTip.java.

00070   {
00071     this.columns = columns;
00072     this.fixedwidth = 0;
00073   }

void org.objectweb.cjdbc.console.gui.jtools.JMultiLineToolTip.setFixedWidth int  width  ) 
 

setFixedWidth

Parameters:
width value

Definition at line 90 of file JMultiLineToolTip.java.

00091   {
00092     this.fixedwidth = width;
00093     this.columns = 0;
00094   }

void org.objectweb.cjdbc.console.gui.jtools.JMultiLineToolTip.updateUI  ) 
 

See also:
javax.swing.JComponent#updateUI()

Definition at line 59 of file JMultiLineToolTip.java.

Referenced by org.objectweb.cjdbc.console.gui.jtools.JMultiLineToolTip.JMultiLineToolTip().

00060   {
00061     setUI(MultiLineToolTipUI.createUI(this));
00062   }


The documentation for this class was generated from the following file:
Generated on Mon Apr 11 22:02:27 2005 for C-JDBC by  doxygen 1.3.9.1