[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.modeling.gmf] Re: check a property while reading file

Hello Martin,

If you load model file using EMY api then you'll gen instances of EMF-generated classes and you can use EMF-generated api to access corresponding properties like:

Network network = ...;
if (network.getPSC().getVersion()  = ...) {
...
}

-----------------
Alex Shatalin