net.anotheria.asg.util.helper.cmsview.CMSViewHelper Maven / Gradle / Ivy
package net.anotheria.asg.util.helper.cmsview;
import net.anotheria.asg.data.DataObject;
/**
* CMSViewHelper interface.
*
* @author another
* @version $Id: $Id
*/
public interface CMSViewHelper {
/**
* getFieldExplanation.
*
* @param documentPath Module.Document from the data definition
* @param object the edited object (if any)
* @param property the property of the object which should be explained
* @return a {@link java.lang.String} object.
*/
public String getFieldExplanation(String documentPath, DataObject object, String property);
}