Groovy内部类不能与Apache Wicket一起工作



我试着用Apache Wicket(6.15.0)和Groovy(2.2.2或2.3.1)写一些简单的东西。而且我在使用内部类时遇到了麻烦。

class CreatePaymentPanel extends Panel { 
  public CreatePaymentPanel(String id) {
    super(id)
    add(new PaymentSelectFragment('currentPanel').setOutputMarkupId(true))
}
public class PaymentSelectFragment extends Fragment {
        public PaymentSelectFragment(String id) {
            super(id, 'selectFragment', CreatePaymentPanel.this) // problem here
            add(new AjaxLink('cardButton') {
                @Override
                void onClick(AjaxRequestTarget target) {
                    ... CreatePaymentPanel.this // not accessible here 
                }
            })
            add(new AjaxLink('terminalButton') {
                @Override
                void onClick(AjaxRequestTarget target) {
                    ... CreatePaymentPanel.this // not accessible here 
                }
            });
        }
        } // end of PaymentSelectFragment class
} // end of CreatePaymentPanel class

Groovy试图在CreatePaymentPanel类中找到一个属性"this" ..如何解决这个问题?这是一个有效的java代码,但不是groovy。

然而,

Test.groovy:

class Test {
    static void main(String[] args) {
        def a = new A()
    }
    static class A {
        A() {
            def c = new C()
        }
        public void sayA() { println 'saying A' }
        class B {
            public B(A instance) {
                A.this.sayA()
                instance.sayA()
            }
        }
        /**
         * The problem occurs here
         */
        class C extends B {
            public C() {
                super(A.this) // groovy tries to find property "this" in A class
                sayA()
            }
        }
    }
}

上面的代码不起作用,出现相同的错误,就像Wicket的情况一样。

和TestJava.java,相同并且工作:

public class TestJava {
    public static void main(String[] args) {
        A a = new A();
    }
    static class A {
        A() {
            C c = new C();
        }
        public void sayA() {
            System.out.println("saying A");
        }
        class B {
            public B(A instance) {
                instance.sayA();
            }
        }
        /**
         * This works fine
         */
        class C extends B {
            public C() {
                super(A.this);
                sayA();
            }
        }
    }
}

我错过了什么?

您不能在PaymentSelectFragment中引用CreatePaymentPanel.this,因为那里没有CreatePamentPanel的实例可以访问。如果允许的话,你期望它的值是多少?

最新更新