Class Introspector.MethodSet

  • Enclosing class:
    Introspector

    class Introspector.MethodSet
    extends java.lang.Object
    A simple struct for holding a set of accessor methods.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) java.lang.reflect.Method _add
      A reference to the add method.
      (package private) java.lang.reflect.Method _create
      A reference to the create method.
      (package private) java.lang.String _fieldName
      The fieldName for the field accessed by the methods in this method set.
      (package private) java.lang.reflect.Method _get
      A reference to the get method.
      (package private) java.lang.reflect.Method _set
      A reference to the set method.
    • Constructor Summary

      Constructors 
      Constructor Description
      MethodSet​(java.lang.String fieldName)  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • _add

        java.lang.reflect.Method _add
        A reference to the add method.
      • _create

        java.lang.reflect.Method _create
        A reference to the create method.
      • _get

        java.lang.reflect.Method _get
        A reference to the get method.
      • _set

        java.lang.reflect.Method _set
        A reference to the set method.
      • _fieldName

        java.lang.String _fieldName
        The fieldName for the field accessed by the methods in this method set.
    • Constructor Detail

      • MethodSet

        MethodSet​(java.lang.String fieldName)