/**
* Sets up all the default icons used in the ralm of this {@link CControl}.
*/
protected void initIcons(){
DefaultIconScheme scheme = new DefaultIconScheme( getController(),
new DefaultIconScheme.IconResource( "data/bibliothek/gui/dock/core/icons.ini", null, DockController.class.getClassLoader() ),
new DefaultIconScheme.IconResource( "data/bibliothek/gui/dock/common/icons/icons.ini", null, CControl.class.getClassLoader() ));
scheme.link( PropertyKey.DOCKABLE_ICON, "dockable.default" );
scheme.link( PropertyKey.DOCK_STATION_ICON, "dockStation.default" );
getController().getIcons().setScheme( Priority.DEFAULT, scheme );
}