lightning-core/src/main/java/org/apache/directmemory/lightning/internal/beans/ReflectionPropertyAccessorFactory.java [393:418]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            @Override
            public <T> void writeObject( Object instance, T value )
            {
                try
                {
                    getSetterMethod().invoke( instance, value );
                }
                catch ( Exception e )
                {
                    throw new IllegalPropertyAccessException( "Exception while writing with method "
                        + getSetterMethod().getName(), e );
                }
            }

            @Override
            @SuppressWarnings( "unchecked" )
            public <T> T readObject( Object instance )
            {
                try
                {
                    return (T) getGetterMethod().invoke( instance );
                }
                catch ( Exception e )
                {
                    throw new IllegalPropertyAccessException( "Exception while reading with method "
                        + getGetterMethod().getName(), e );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lightning-core/src/main/java/org/apache/directmemory/lightning/internal/beans/ReflectionPropertyAccessorFactory.java [437:462]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            @Override
            public <T> void writeObject( Object instance, T value )
            {
                try
                {
                    getSetterMethod().invoke( instance, value );
                }
                catch ( Exception e )
                {
                    throw new IllegalPropertyAccessException( "Exception while writing with method "
                        + getSetterMethod().getName(), e );
                }
            }

            @Override
            @SuppressWarnings( "unchecked" )
            public <T> T readObject( Object instance )
            {
                try
                {
                    return (T) getGetterMethod().invoke( instance );
                }
                catch ( Exception e )
                {
                    throw new IllegalPropertyAccessException( "Exception while reading with method "
                        + getGetterMethod().getName(), e );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



