Groovy闭包在Fest中实现matcher



我正试图用Groovy(2.1.6)为Fest创建一个闭包匹配器,如下所示:

def matcherLabel = [ isMatching: { JLabel label -> /* do something */ } ] as GenericTypeMatcher<JLabel>

GenericTypeMatcher是一个抽象类,只有一个方法可以实现(isMatching(T T))

但我得到了这个错误:

org.codehaus.groovy.runtime.typehandling.GroovyCastException: Error casting map to org.fest.swing.core.GenericTypeMatcher, Reason: null
at org.codehaus.groovy.runtime.DefaultGroovyMethods.asType(DefaultGroovyMethods.java:7562)

我想做的事情可能吗?

您的问题是GenericTypeMatcher类没有默认的零参数构造函数。将映射强制转换为类似ComponentMatcher的接口。如果不能使用接口,另一种选择是子类GenericTypeMatcher并提供零参数构造函数。

相关内容

  • 没有找到相关文章

最新更新