In my EObject
I have the field eStorage
, which contains data, I want to use.
Is there a possibility to read out the eStorage?
I tried the code below but it doesn't work:
doIt(EObject object) {
object.getEStorage;
// use the eStorage...
}