All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mondbranch.command-line-parser.1.2.0.source-code.CmdArgsBaseListener Maven / Gradle / Ivy

Go to download

Allows a direct call to a main(String[] args) method using an unparsed string containing the arguments.

The newest version!
// Generated from /home/ubuntu/code/command-line-parser/src/main/antlr4/CmdArgs.g4 by ANTLR 4.2.2
package com.github.almondbranch.command_line_parser;

import org.antlr.v4.runtime.ParserRuleContext;
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.ErrorNode;
import org.antlr.v4.runtime.tree.TerminalNode;

/**
 * This class provides an empty implementation of {@link CmdArgsListener},
 * which can be extended to create a listener which only needs to handle a subset
 * of the available methods.
 */
public class CmdArgsBaseListener implements CmdArgsListener {
	/**
	 * {@inheritDoc}
	 *
	 * 

The default implementation does nothing.

*/ @Override public void enterInput(@NotNull CmdArgsParser.InputContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitInput(@NotNull CmdArgsParser.InputContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterEntry(@NotNull CmdArgsParser.EntryContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitEntry(@NotNull CmdArgsParser.EntryContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterDelimiter(@NotNull CmdArgsParser.DelimiterContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitDelimiter(@NotNull CmdArgsParser.DelimiterContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterEveryRule(@NotNull ParserRuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitEveryRule(@NotNull ParserRuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void visitTerminal(@NotNull TerminalNode node) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void visitErrorNode(@NotNull ErrorNode node) { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy