inheritance by standart tools

Hi,
I want release


public interface MyInterface { 
method1{}; ...
}
public class MyEntity extends StandartEntity implements MyInterface{}

How to do it as standard as possible? Where to put the MyInterface file? Can I use @Override with atributes?

Hi Alex,

Just place it in the global module next to your entity classes. And of course you can use the @Override annotation.