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

mantsonu20.sip-parser-antlr.1.0.0.source-code.UriHeadersListener Maven / Gradle / Ivy

The newest version!
// Generated from UriHeaders.g4 by ANTLR 4.5.3

/**
 *   Copyright 2016 Pratapi Hemant Patel
 *
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 *   
 */
package antlr4;

import org.antlr.v4.runtime.tree.ParseTreeListener;

/**
 * This interface defines a complete listener for a parse tree produced by
 * {@link UriHeadersParser}.
 */
public interface UriHeadersListener extends ParseTreeListener {
	/**
	 * Enter a parse tree produced by {@link UriHeadersParser#uriHeaders}.
	 * @param ctx the parse tree
	 */
	void enterUriHeaders(UriHeadersParser.UriHeadersContext ctx);
	/**
	 * Exit a parse tree produced by {@link UriHeadersParser#uriHeaders}.
	 * @param ctx the parse tree
	 */
	void exitUriHeaders(UriHeadersParser.UriHeadersContext ctx);
	/**
	 * Enter a parse tree produced by {@link UriHeadersParser#uriParameters}.
	 * @param ctx the parse tree
	 */
	void enterUriParameters(UriHeadersParser.UriParametersContext ctx);
	/**
	 * Exit a parse tree produced by {@link UriHeadersParser#uriParameters}.
	 * @param ctx the parse tree
	 */
	void exitUriParameters(UriHeadersParser.UriParametersContext ctx);
	/**
	 * Enter a parse tree produced by {@link UriHeadersParser#uriParameter}.
	 * @param ctx the parse tree
	 */
	void enterUriParameter(UriHeadersParser.UriParameterContext ctx);
	/**
	 * Exit a parse tree produced by {@link UriHeadersParser#uriParameter}.
	 * @param ctx the parse tree
	 */
	void exitUriParameter(UriHeadersParser.UriParameterContext ctx);
	/**
	 * Enter a parse tree produced by {@link UriHeadersParser#headers}.
	 * @param ctx the parse tree
	 */
	void enterHeaders(UriHeadersParser.HeadersContext ctx);
	/**
	 * Exit a parse tree produced by {@link UriHeadersParser#headers}.
	 * @param ctx the parse tree
	 */
	void exitHeaders(UriHeadersParser.HeadersContext ctx);
	/**
	 * Enter a parse tree produced by {@link UriHeadersParser#header}.
	 * @param ctx the parse tree
	 */
	void enterHeader(UriHeadersParser.HeaderContext ctx);
	/**
	 * Exit a parse tree produced by {@link UriHeadersParser#header}.
	 * @param ctx the parse tree
	 */
	void exitHeader(UriHeadersParser.HeaderContext ctx);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy