org.eclipse.xtext.ui.editor.contentassist.antlr
Interface IContentAssistParser

All Known Subinterfaces:
IPartialContentAssistParser
All Known Implementing Classes:
AbstractContentAssistParser, CodetemplatesParser, PartialCodetemplatesContentAssistParser, PartialXtextContentAssistParser, PureXbaseParser, SingleCodetemplateParser, XbaseParser, XbaseWithAnnotationsParser, Xtend2Parser, XtextParser

public interface IContentAssistParser

Parser that returns the expected elements when EOF is reached.

Author:
Sebastian Zarnekow - Initial contribution and API

Method Summary
 java.util.Collection<FollowElement> getFollowElements(FollowElement element)
           
 java.util.Collection<FollowElement> getFollowElements(java.lang.String input, boolean strict)
           
 

Method Detail

getFollowElements

java.util.Collection<FollowElement> getFollowElements(java.lang.String input,
                                                      boolean strict)
Parameters:
strict - if true the parser will not use error recovery on the very last token of the input.

getFollowElements

java.util.Collection<FollowElement> getFollowElements(FollowElement element)