Statistics
| Revision:

root / trunk / frameworks / _fwAndami / src / com / iver / andami / ui / mdiFrame / EnableTextSupport.java @ 977

History | View | Annotate | Download (821 Bytes)

1
/*
2
 * Created on 05-dic-2004
3
 *
4
 * TODO To change the template for this generated file go to
5
 * Window - Preferences - Java - Code Style - Code Templates
6
 */
7
package com.iver.andami.ui.mdiFrame;
8

    
9
/**
10
 * @author root
11
 *
12
 * TODO To change the template for this generated type comment go to
13
 * Window - Preferences - Java - Code Style - Code Templates
14
 */
15
public interface EnableTextSupport {
16
        /**
17
         * @return Returns the enableText.
18
         */
19
        public abstract String getEnableText();
20

    
21
        /**
22
         * @param enableText The enableText to set.
23
         */
24
        public abstract void setEnableText(String enableText);
25

    
26
        /**
27
         * @see java.awt.Component#setVisible(boolean)
28
         */
29
        public abstract void setEnabled(boolean aFlag);
30

    
31
        /**
32
         * @see javax.swing.JComponent#setToolTipText(java.lang.String)
33
         */
34
        public abstract void setToolTip(String text);
35
}