我正在使用 Acceleo-MTL 生成 Java 类。如何从抽象超类中获取所有抽象方法?
为了获得简单的操作和接口,我使用这个:
[comment]Operators[/comment]
[for (o : Operation | class.getOperations())]
[o.generateOperation()/]
[/for]
[comment]Interface Methods[/comment]
[for (interf : Interface | class.getImplementedInterfaces())]
[for (o : Operation | interf.ownedOperation)]
[o.generateInterace()/]
[/for]
[/for]
是否存在像getImplementedInterfaces()
接口一样的抽象方法的 getter 方法?