Class ClassConfiguration.PropertyInfo

  • Enclosing class:
    ClassConfiguration

    public static class ClassConfiguration.PropertyInfo
    extends java.lang.Object
    Class used to contain the property information if the property is readable, writable and the methods that implement the get and set functions.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.reflect.Method readMethod_  
      private java.lang.reflect.Method writeMethod_  
    • Constructor Summary

      Constructors 
      Constructor Description
      PropertyInfo​(java.lang.reflect.Method readMethod, java.lang.reflect.Method writeMethod)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.reflect.Method getReadMethod()  
      java.lang.reflect.Method getWriteMethod()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • readMethod_

        private final java.lang.reflect.Method readMethod_
      • writeMethod_

        private final java.lang.reflect.Method writeMethod_
    • Constructor Detail

      • PropertyInfo

        public PropertyInfo​(java.lang.reflect.Method readMethod,
                            java.lang.reflect.Method writeMethod)
        Constructor.
        Parameters:
        readMethod - the readMethod
        writeMethod - the writeMethod
    • Method Detail

      • getReadMethod

        public java.lang.reflect.Method getReadMethod()
        Returns:
        the readMethod
      • getWriteMethod

        public java.lang.reflect.Method getWriteMethod()
        Returns:
        the writeMethod