com.github.jonathanxd.textlexer.ext.parser.Processor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of textlexer Show documentation
Show all versions of textlexer Show documentation
Lexical Analyzer API for Java!
/*
* TextLexer - Lexical Analyzer API for Java!
* Copyright (C) 2016 TheRealBuggy/JonathanxD (https://github.com/JonathanxD/)
*
* GNU GPLv3
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package com.github.jonathanxd.textlexer.ext.parser;
import com.github.jonathanxd.textlexer.ext.parser.structure.ParseStructure;
import com.github.jonathanxd.textlexer.lexer.token.IToken;
/**
* Created by jonathan on 17/02/16.
*/
public interface Processor {
IToken> currentToken();
IToken> safeNext();
ParseStructure structure();
ParseStructure.ParseSection section();
}