package angularBeans.util;
/**
* Helper class for setters, getters perfixes.
*
* @author melbehi
* @author Aymen Naili
*/
public final class Accessors {
/**
* Getter method prefix.
*/
public static String GETTER_PREFIX = "get";
/**
* Setter method prefix.
*/
public static String SETTER_PREFIX = "set";
/**
* Boolean getter method preix.
*/
public static String BOOLEAN_GETTER_PREFIX = "is";
}