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()
か?