de.intarsys.tools.preferences.PreferenceValueFromArgsConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isrt Show documentation
Show all versions of isrt Show documentation
The basic runtime tools and interfaces for intarsys components.
package de.intarsys.tools.preferences;
import de.intarsys.tools.converter.ConversionException;
import de.intarsys.tools.converter.IConverter;
import de.intarsys.tools.functor.IArgs;
/**
*
*/
public class PreferenceValueFromArgsConverter implements
IConverter {
public IArgs convert(IArgs source) throws ConversionException {
return source;
}
public Class> getSourceType() {
return IArgs.class;
}
public Class> getTargetType() {
return PreferenceValue.class;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy