ISharedObjectManager mgr = container.getSharedObjectManager();
ID id = IDFactory.getDefault().createStringID(DataGraphSharing.DATA_GRAPH_SHARING_ID);
DataGraphSharing result = (DataGraphSharing) mgr.getSharedObject(id);
if (result == null) {
result = new DataGraphSharing();
mgr.addSharedObject(id, result, null);
}
return result;
}
}