01: /*
02: * Created on 21/08/2005
03: * ============================================================================
04: * GNU Lesser General Public License
05: * ============================================================================
06: *
07: * Swing Components - visit http://sf.net/projects/gfd
08: *
09: * Copyright (C) 2004 Igor Regis da Silva Simões
10: *
11: * This library is free software; you can redistribute it and/or
12: * modify it under the terms of the GNU Lesser General Public
13: * License as published by the Free Software Foundation; either
14: * version 2.1 of the License, or (at your option) any later version.
15: *
16: * This library is distributed in the hope that it will be useful,
17: * but WITHOUT ANY WARRANTY; without even the implied warranty of
18: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19: * Lesser General Public License for more details.
20: *
21: * You should have received a copy of the GNU Lesser General Public
22: * License along with this library; if not, write to the Free Software
23: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
24: */
25:
26: package br.com.gfpshare.beans;
27:
28: import javax.swing.JToolTip;
29:
30: import br.com.gfpshare.plaf.MultiLineToolTipUI;
31:
32: /**
33: * This code is available at http://www.objects.com.au/java/examples/src/tooltip/MultiLineToolTipUI.java
34: * There was made some improvments by Igor Regis da Silva Simoes
35: * @version 1.0 11/09/98
36: */
37:
38: public class MultiLineToolTip extends JToolTip {
39: /**
40: * Cria uma instancia de um toolTipo de MultiLinhas
41: *
42: */
43: public MultiLineToolTip() {
44: setUI(new MultiLineToolTipUI());
45: }
46: }
|