tooltip = new DockActionText( "close.tooltip", this ){
protected void changed( String oldValue, String newValue ){
setTooltip( newValue );
}
};
icon = new DockActionIcon( "close", this ){
protected void changed( Icon oldValue, Icon newValue ){
setIcon( newValue );
}
};
iconHover = new DockActionIcon( "close.hover", this ){
protected void changed( Icon oldValue, Icon newValue ){
setIcon( ActionContentModifier.NONE_HOVER, newValue );
}
};
iconPressed = new DockActionIcon( "close.pressed", this ){
protected void changed( Icon oldValue, Icon newValue ){
setIcon( ActionContentModifier.NONE_PRESSED, newValue );
}
};