lightning-core/src/main/java/org/apache/directmemory/lightning/internal/util/BeanUtil.java [197:217]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if ( method.getName().startsWith( "get" ) || method.getName().startsWith( "is" ) )
        {
            return method;
        }

        String propertyName = StringUtil.toUpperCamelCase( extractPropertyName( method.getName() ) );

        Class<?> type = method.getParameterTypes()[0];
        Class<?> clazz = method.getDeclaringClass();
        String getterObjectName = "get" + propertyName;
        String getterBooleanName = "is" + propertyName;

        try
        {
            return clazz.getDeclaredMethod( getterObjectName, type );
        }
        catch ( Exception e )
        {
            if ( type == boolean.class )
            {
                try
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lightning-core/src/main/java/org/apache/directmemory/lightning/internal/util/BeanUtil.java [234:254]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if ( method.getName().startsWith( "get" ) || method.getName().startsWith( "is" ) )
        {
            return method;
        }

        String propertyName = StringUtil.toUpperCamelCase( extractPropertyName( method.getName() ) );

        Class<?> type = method.getParameterTypes()[0];
        Class<?> clazz = method.getDeclaringClass();
        String getterObjectName = "get" + propertyName;
        String getterBooleanName = "is" + propertyName;

        try
        {
            return clazz.getDeclaredMethod( getterObjectName, type );
        }
        catch ( Exception e )
        {
            if ( type == boolean.class )
            {
                try
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



