Package com.dci.intellij.dbn.language.sql.dialect.mysql

Source Code of com.dci.intellij.dbn.language.sql.dialect.mysql.MysqlSQLParserDefinition

package com.dci.intellij.dbn.language.sql.dialect.mysql;

import com.dci.intellij.dbn.language.sql.SQLParserDefinition;
import com.intellij.lexer.FlexAdapter;
import com.intellij.lexer.Lexer;
import com.intellij.openapi.project.Project;
import org.jetbrains.annotations.NotNull;


public class MysqlSQLParserDefinition extends SQLParserDefinition {

    public MysqlSQLParserDefinition(MysqlSQLParser parser) {
        super(parser);
    }

    @NotNull
    public Lexer createLexer(Project project) {
        return new FlexAdapter(new MysqlSQLParserFlexLexer(getTokenTypes()));
    }

}
TOP

Related Classes of com.dci.intellij.dbn.language.sql.dialect.mysql.MysqlSQLParserDefinition

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.