/** * <copyright> * </copyright> * * */ package org.reuseware.air.language.abstractsyntax.resource.as; /** * A listener interface for classes that need notification when a background * parsing pass has completed. */ public interface IAsBackgroundParsingListener { /** * 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); }