de.retest.ui.DefaultValueFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of retest-model Show documentation
Show all versions of retest-model Show documentation
The domain model for both retest and recheck.
package de.retest.ui;
import java.io.Serializable;
import de.retest.ui.descriptors.IdentifyingAttributes;
public interface DefaultValueFinder {
/**
* Returns a default value for the give StateAttributes (font, text color, background color, ...). Default values
* are not persisted for every element to save (enormous) space. But if the value is not default, we want to know
* what default would have been.
*
* @return the default value for the given component and the given state attributes key or null
if not
* applicable or unknown.
*/
Serializable getDefaultValue( final IdentifyingAttributes comp, final String attributesKey );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy