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 );
}
};
}