/** * <copyright> * </copyright> * * */ package ssl.resource.ssl; /** * An interface used to access the result of parsing a document. */ public interface ISslParseResult { /** * Returns the root object of the document. */ public org.eclipse.emf.ecore.EObject getRoot(); /** * Returns a list of commands that must be executed after parsing the document. */ public java.util.Collection<ssl.resource.ssl.ISslCommand<ssl.resource.ssl.ISslTextResource>> getPostParseCommands(); }