alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Groovy example source code file (Groovy4035Bug.groovy)

This example Groovy source code file (Groovy4035Bug.groovy) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Groovy tags/keywords

aic, aic-foo4035-42, aic-foo4035-42, foo4035, foo4035, groovy4035bug, groovytestcase, inner, inner-foo4035-42, inner-foo4035-42, inner4035, inner4035

The Groovy Groovy4035Bug.groovy source code

package groovy.bugs

class Groovy4035Bug extends GroovyTestCase {
    void testSuperCallInsideAnAIC() {
        def aic = new Foo4035() {
            def foo(Object msg) {
                return "AIC-" + super.foo(msg)
            }
        }
        assert aic.foo("42") == "AIC-Foo4035-42"
    }

    void testSuperCallInsideANormalInnerClass() {
        def inner = new Inner4035()
        
        assert inner.foo("42") == "Inner-Foo4035-42"
    }

    class Inner4035 extends Foo4035 {
        def foo(Object msg) {
            return "Inner-" + super.foo(msg)
        }
    }
}

class Foo4035 {
    def foo(msg) {
        "Foo4035-" + msg
    }
}

Other Groovy examples (source code examples)

Here is a short list of links related to this Groovy Groovy4035Bug.groovy source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.