Package de.isas.lipidomics.palinom
Interface SumFormulaVisitor<T>
-
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
SumFormulaBaseVisitor
,SumFormulaVisitorImpl
public interface SumFormulaVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced bySumFormulaParser
.
-
-
Method Summary
-
-
-
Method Detail
-
visitMolecule
T visitMolecule(SumFormulaParser.MoleculeContext ctx)
Visit a parse tree produced bySumFormulaParser.molecule()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMolecule_rule
T visitMolecule_rule(SumFormulaParser.Molecule_ruleContext ctx)
Visit a parse tree produced bySumFormulaParser.molecule_rule()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMolecule_group
T visitMolecule_group(SumFormulaParser.Molecule_groupContext ctx)
Visit a parse tree produced bySumFormulaParser.molecule_group()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitElement_group
T visitElement_group(SumFormulaParser.Element_groupContext ctx)
Visit a parse tree produced bySumFormulaParser.element_group()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSingle_element
T visitSingle_element(SumFormulaParser.Single_elementContext ctx)
Visit a parse tree produced bySumFormulaParser.single_element()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitElement
T visitElement(SumFormulaParser.ElementContext ctx)
Visit a parse tree produced bySumFormulaParser.element()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitCount
T visitCount(SumFormulaParser.CountContext ctx)
Visit a parse tree produced bySumFormulaParser.count()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDigit
T visitDigit(SumFormulaParser.DigitContext ctx)
Visit a parse tree produced bySumFormulaParser.digit()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
-