com.frameworkset.util.WrapperEditorInf Maven / Gradle / Ivy
package com.frameworkset.util;
public interface WrapperEditorInf extends EditorInf
{
/**
* Gets the property value.
* @param fromValue
* @return The value of the property. Primitive types such as "int" will
* be wrapped as the corresponding object type such as "java.lang.Integer".
*/
T getValueFromObject(Object fromValue,Object oldvalue) ;
T getValueFromString(String fromValue,Object oldvalue);
String getStringValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy