I am writting a multithreads program with java, so in my emf model that some class need implements the Runnable class, so i wondered how to do this with emf? such as:
public interface MyClass extends Runnable {
rather than:
public interface MyClass extends EObject {
?