Class MethodAccessor_Ref

  • All Implemented Interfaces:
    Receiver

    public class MethodAccessor_Ref
    extends Accessor
    Template Accessor for reference types getter/setter.
    Author:
    Kohsuke Kawaguchi
    • Constructor Detail

      • MethodAccessor_Ref

        public MethodAccessor_Ref()
    • Method Detail

      • get

        public Object get​(Object bean)
        Description copied from class: Accessor
        Gets the value of the property of the given bean object.
        Specified by:
        get in class Accessor
        Parameters:
        bean - must not be null.
      • set

        public void set​(Object bean,
                        Object value)
        Description copied from class: Accessor
        Sets the value of the property of the given bean object.
        Specified by:
        set in class Accessor
        Parameters:
        bean - must not be null.
        value - the value to be set. Setting value to null means resetting to the VM default value (even for primitive properties.)