Adding setExternalizable(boolean) method

Hi everyone,

I think it would be very useful to add a setExternalizable(boolean) method to either the CDockable interface or to one of its implementations.

I don’t like the externalization feature which I think is confusing for the user in some cases. On my application, I thus disabled it by creating my own DefaultSingleCDockable sub-class that overrides the isExternalizable method:

@Override
public boolean isExternalizable() {
    return false;
}```

The result is the same, but I would find it easier to use to have a method to access this function without having to create my own class.

That's just a suggestion.

Kind regards,

Benoît

This method already exists, it is part of DefaultCDockable.

Oops, I missed that one :slight_smile:

Thanks