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 {

?

link|improve this question

59% accept rate
feedback

2 Answers

up vote 2 down vote accepted

As a side note EMF Core itself is not thread safe, two options are existing : EMF-CDO which allow concurrent modifications with transactions EMF-Transaction which allow you to control the way changes are being made spliting those into TransactionalCommands, the changes are not really applied concurrently though.

link|improve this answer
feedback

I don't have an up-to-date EMF install to hand, but the EMF book (ed 2) says that you do this by changing the "Model Class Defaults>Root extends Interface" property in your GenModel.

However, I have my doubts that using Runnable will work. Maybe you should define your own interface that extends both Runnable and EObject ?

link|improve this answer
thanks, i got it.The solution is add a abstract interface class in emf, and make this class extends java.lang.Runnable class, then have a class implements this class, after generating codes, then you can see it's implements the Runnable class rather than the interface class itself! – liunx Feb 12 '11 at 4:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.