Examples of IdeaAction


Examples of org.antlr.works.editor.idea.IdeaAction

    }

    @Override
    public List<IdeaAction> getIdeaActions() {
        List<IdeaAction> actions = new ArrayList<IdeaAction>();
        actions.add(new IdeaAction("Show Decision DFA", this, IDEA_DECISION_DFA, token));
        return actions;
    }
View Full Code Here

Examples of org.antlr.works.editor.idea.IdeaAction

    public class ItemUndefinedReference extends EditorInspectorItem {

        public List<IdeaAction> getIdeaActions() {
            List<IdeaAction> actions = new ArrayList<IdeaAction>();
            actions.add(new IdeaAction("Create rule '"+token.getAttribute()+"'", this, IDEA_CREATE_RULE, token));
            return actions;
        }
View Full Code Here

Examples of org.antlr.works.editor.idea.IdeaAction

    public class ItemUndefinedImport extends EditorInspectorItem {

        public List<IdeaAction> getIdeaActions() {
            List<IdeaAction> actions = new ArrayList<IdeaAction>();
            actions.add(new IdeaAction("Create file '"+token.getAttribute()+"'", this, IDEA_CREATE_FILE, token));
            return actions;
        }
View Full Code Here

Examples of org.antlr.works.editor.idea.IdeaAction

    public class ItemDuplicateRule extends EditorInspectorItem {

        public List<IdeaAction> getIdeaActions() {
            List<IdeaAction> actions = new ArrayList<IdeaAction>();
            actions.add(new IdeaAction("Delete rule '"+token.getAttribute()+"'", this, IDEA_DELETE_RULE, token));
            return actions;
        }
View Full Code Here

Examples of org.antlr.works.editor.idea.IdeaAction

    public class ItemLeftRecursion extends EditorInspectorItem {

        public List<IdeaAction> getIdeaActions() {
            List<IdeaAction> actions = new ArrayList<IdeaAction>();
            actions.add(new IdeaAction("Remove left recursion of rule '"+token.getAttribute()+"'", this, IDEA_REMOVE_LEFT_RECURSION, token));
            return actions;
        }
View Full Code Here

Examples of org.antlr.works.editor.idea.IdeaAction

    public class ItemInvalidCharLiteral extends EditorInspectorItem {

        public List<IdeaAction> getIdeaActions() {
            List<IdeaAction> actions = new ArrayList<IdeaAction>();
            actions.add(new IdeaAction("Convert literals to single quote", this, IDEA_CONVERT_TO_SINGLE_QUOTE, token));
            return actions;
        }
View Full Code Here

Examples of org.antlr.works.editor.idea.IdeaAction

    public class ItemInvalidGrammarName extends EditorInspectorItem {

        public List<IdeaAction> getIdeaActions() {
            List<IdeaAction> actions = new ArrayList<IdeaAction>();
            actions.add(new IdeaAction("Change grammar name to '"+getGrammarNameFromFile()+"'", this, IDEA_FIX_GRAMMAR_NAME, token));
            return actions;
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.