Package bibliothek.gui.dock.common.action.util

Examples of bibliothek.gui.dock.common.action.util.CActionText


            protected void valueChanged( KeyStroke oldValue, KeyStroke newValue ) {
                setAccelerator( newValue );
            }
        };
       
        text = new CActionText( textKey, this ){
      protected void changed( String oldValue, String newValue ){
        setText( newValue );
      }
    };
   
    tooltip = new CActionText( tooltipKey, this ){
      protected void changed( String oldValue, String newValue ){
        setTooltip( newValue )
      }
    };
    }
View Full Code Here

TOP

Related Classes of bibliothek.gui.dock.common.action.util.CActionText

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.