Interface SessionAwareReadApply
-
- All Known Implementing Classes:
ColorfulImageProcessor,GammaImageProcessor,SharpenImageProcessor,TileSourceDisplaySettings
public interface SessionAwareReadApply
Interface to support export to session file (and import back) for a class that stores customizable user settings.- Since:
- 12594
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapplyFromPropertiesMap(java.util.Map<java.lang.String,java.lang.String> properties)Import settings from a map of properties.java.util.Map<java.lang.String,java.lang.String>toPropertiesMap()Export settings to a map of properties.
-
-
-
Method Detail
-
toPropertiesMap
java.util.Map<java.lang.String,java.lang.String> toPropertiesMap()
Export settings to a map of properties.- Returns:
- map of properties
-
applyFromPropertiesMap
void applyFromPropertiesMap(java.util.Map<java.lang.String,java.lang.String> properties)
Import settings from a map of properties.- Parameters:
properties- properties map
-
-