/** * <copyright> * </copyright> * * */ package org.feature.multi.perspective.mapping.viewmapping.resource.mtext; /** * A listener interface for classes that need notification when a background * parsing pass has completed. */ public interface IMtextBackgroundParsingListener { /** * Signals that the given resource has been changed and the background parsing is * completed. * * @param resource the resource that has changed */ public void parsingCompleted(org.eclipse.emf.ecore.resource.Resource resource); }