mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
12 lines
226 B
Java
12 lines
226 B
Java
package com.simpleplugin;
|
|
|
|
import com.intellij.lexer.FlexAdapter;
|
|
|
|
import java.io.Reader;
|
|
|
|
public class SimpleLexerAdapter extends FlexAdapter {
|
|
public SimpleLexerAdapter() {
|
|
super(new SimpleLexer((Reader) null));
|
|
}
|
|
}
|