Package org.eclipse.jdt.ui.cleanup
Class CleanUpOptions
java.lang.Object
org.eclipse.jdt.core.manipulation.CleanUpOptionsCore
org.eclipse.jdt.ui.cleanup.CleanUpOptions
Allows to set and retrieve clean up settings for given options keys.
Originally from org.eclipse.jdt.ui 3.5
- Since:
- 1.21
- Restriction:
- This class is not intended to be subclassed by clients.
-
Field Summary
-
Constructor Summary
ModifierConstructorDescriptionCreates a new instance.protected
CleanUpOptions
(Map<String, String> options) Creates a new CleanUpOptions instance with the given options. -
Method Summary
Modifier and TypeMethodDescriptiongetKeys()
Returns an unmodifiable set of all known keys.Returns the value for the given key.boolean
Tells whether the option with the givenkey
is enabled.void
Sets the option for the given key to the given value.
-
Field Details
-
TRUE
True value- See Also:
-
FALSE
False value- See Also:
-
-
Constructor Details
-
CleanUpOptions
Creates a new CleanUpOptions instance with the given options.- Parameters:
options
- map that maps clean ups keys (String
) to a non-null
string value
-
CleanUpOptions
public CleanUpOptions()Creates a new instance.
-
-
Method Details
-
getKeys
Description copied from class:CleanUpOptionsCore
Returns an unmodifiable set of all known keys.- Overrides:
getKeys
in classCleanUpOptionsCore
- Returns:
- an unmodifiable set of all keys
-
setOption
Description copied from class:CleanUpOptionsCore
Sets the option for the given key to the given value.- Overrides:
setOption
in classCleanUpOptionsCore
- Parameters:
key
- the name of the option to setvalue
- the value of the option- See Also:
-
getValue
Description copied from class:CleanUpOptionsCore
Returns the value for the given key.- Overrides:
getValue
in classCleanUpOptionsCore
- Parameters:
key
- the key of the value- Returns:
- the value associated with the key
-
isEnabled
Description copied from class:CleanUpOptionsCore
Tells whether the option with the givenkey
is enabled.- Overrides:
isEnabled
in classCleanUpOptionsCore
- Parameters:
key
- the name of the option- Returns:
true
if enabled,false
if not enabled or unknown key- See Also:
-
CleanUpConstants
-