Java 类org.eclipse.xtext.ide.editor.contentassist.antlr.internal.AbstractInternalContentAssistParser 实例源码

项目:pokemon-tcgo-deck-generator    文件:PartialPkmntcgoContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:n4js    文件:PartialN4JSContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:n4js    文件:N4JSParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    try {
        InternalN4JSParser typedParser = (InternalN4JSParser) parser;
        typedParser.entryRuleScript();
        return typedParser.getFollowElements();
    } catch(RecognitionException ex) {
        throw new RuntimeException(ex);
    }
}
项目:n4js    文件:CustomN4JSParser.java   
/**
 * Initialize the parser properly with the given tokens and process it.
 */
private Collection<FollowElement> doGetFollowElements(AbstractInternalContentAssistParser parser,
        ObservableXtextTokenStream tokens) {
    tokens.setInitialHiddenTokens(getInitialHiddenTokens());
    parser.setTokenStream(tokens);
    IUnorderedGroupHelper helper = getUnorderedGroupHelper().get();
    parser.setUnorderedGroupHelper(helper);
    helper.initializeWith(parser);
    tokens.setListener(parser);
    Collection<FollowElement> followElements = getFollowElements(parser);
    return followElements;
}
项目:n4js    文件:PartialRegularExpressionContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:n4js    文件:PartialN4MFContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:n4js    文件:PartialTypesContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:Xtext_Xtend_HTML_Generator    文件:MyDslParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    try {
        InternalMyDslParser typedParser = (InternalMyDslParser) parser;
        typedParser.entryRuleMensamodel();
        return typedParser.getFollowElements();
    } catch(RecognitionException ex) {
        throw new RuntimeException(ex);
    }
}
项目:Xtext_Xtend_HTML_Generator    文件:PartialMyDslContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:bromium    文件:PartialBromiumContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:gw4e.project    文件:PartialDSLPoliciesContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:lcdsl    文件:PartialLcDslContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:gemoc-studio    文件:PartialDslContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:org.xtext.dsl.restaurante    文件:PartialRestauranteContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:OCCI-Studio    文件:PartialOCCIContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:xtext-extras    文件:PartialPureXbaseContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:M2Doc    文件:PartialMyDslContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:minitl    文件:MinitlParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    try {
        InternalMinitlParser typedParser = (InternalMinitlParser) parser;
        typedParser.entryRuleTransformation();
        return typedParser.getFollowElements();
    } catch(RecognitionException ex) {
        throw new RuntimeException(ex);
    }
}
项目:minitl    文件:PartialMinitlContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:xtext-core    文件:PartialTestLanguageContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:xtext-core    文件:PartialPartialContentAssistTestLanguageContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:xtext-core    文件:PartialIndentationAwareUiTestLanguageContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:xtext-core    文件:PartialPartialSerializationTestLanguageContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:xtext-core    文件:PartialXtextContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:xtext-core    文件:PartialFileAwareTestLanguageContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:xtext-core    文件:PartialXtextGrammarTestLanguageContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:xtext-core    文件:PartialNoJdtTestLanguageContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:Sparrow    文件:PartialModelEditorContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:Sparrow    文件:ModelEditorParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    try {
        InternalModelEditorParser typedParser = (InternalModelEditorParser) parser;
        typedParser.entryRuleModel();
        return typedParser.getFollowElements();
    } catch(RecognitionException ex) {
        throw new RuntimeException(ex);
    }
}
项目:xtext-orion    文件:StatemachineParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    try {
        org.xtext.example.statemachine.ide.contentassist.antlr.internal.InternalStatemachineParser typedParser = (org.xtext.example.statemachine.ide.contentassist.antlr.internal.InternalStatemachineParser) parser;
        typedParser.entryRuleStatemachine();
        return typedParser.getFollowElements();
    } catch(RecognitionException ex) {
        throw new RuntimeException(ex);
    }       
}
项目:CooperateModelingEnvironment    文件:PartialClsContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:CooperateModelingEnvironment    文件:PartialComponentContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:CooperateModelingEnvironment    文件:PartialUsecaseContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:cs2as    文件:PartialASBHLangContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:cs2as    文件:ASBHLangParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    try {
        InternalASBHLangParser typedParser = (InternalASBHLangParser) parser;
        typedParser.entryRuleRoot();
        return typedParser.getFollowElements();
    } catch(RecognitionException ex) {
        throw new RuntimeException(ex);
    }
}
项目:cs2as    文件:MiniOCLParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    try {
        InternalMiniOCLParser typedParser = (InternalMiniOCLParser) parser;
        typedParser.entryRuleRootCS();
        return typedParser.getFollowElements();
    } catch(RecognitionException ex) {
        throw new RuntimeException(ex);
    }
}
项目:cs2as    文件:PartialMiniOCLContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:XRobot    文件:PartialXRobotDSLContentAssistParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    if (rule == null || rule.eIsProxy())
        return Collections.emptyList();
    String methodName = "entryRule" + rule.getName();
    PolymorphicDispatcher<Collection<FollowElement>> dispatcher = 
        new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
    dispatcher.invoke();
    return parser.getFollowElements();
}
项目:XRobot    文件:XRobotDSLParser.java   
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
    try {
        org.xtext.xrobot.dsl.ide.contentassist.antlr.internal.InternalXRobotDSLParser typedParser = (org.xtext.xrobot.dsl.ide.contentassist.antlr.internal.InternalXRobotDSLParser) parser;
        typedParser.entryRuleProgram();
        return typedParser.getFollowElements();
    } catch(RecognitionException ex) {
        throw new RuntimeException(ex);
    }       
}
项目:xtext-core    文件:AbstractContentAssistParser.java   
@Override
protected abstract AbstractInternalContentAssistParser createParser();