Class BeanDescription


  • public class BeanDescription
    extends Object
    Lightweight pendant to the java.beans.BeanInfo class. An instance of this class encapsulates the properties of a certain class. The properties are the public setters and getters. In addition the 'add-er'-methods are included, which are the public methods which start with the prefix 'add'.
    • Method Detail

      • getClazz

        public Class<?> getClazz()
      • getPropertyNameToGetter

        public Map<String,​Method> getPropertyNameToGetter()
      • getPropertyNameToSetter

        public Map<String,​Method> getPropertyNameToSetter()
      • getGetter

        public Method getGetter​(String propertyName)
      • getSetter

        public Method getSetter​(String propertyName)
      • getPropertyNameToAdder

        public Map<String,​Method> getPropertyNameToAdder()
      • getAdder

        public Method getAdder​(String propertyName)