Interface PreferenceProviderDataChange

interface PreferenceProviderDataChange {
    domain?: string[];
    newValue?: any;
    oldValue?: any;
    preferenceName: string;
    scope: PreferenceScope;
}

Hierarchy (view full)

Properties

domain?: string[]

URIs of the scopes in which this change applies.

newValue?: any

The new value of the changed preference.

oldValue?: any

The old value of the changed preference.

preferenceName: string

The name of the changed preference.

The PreferenceScope of the changed preference.