![JAR search and dependency download from the Maven repository](/logo.png)
mantsonu20.sip-parser-antlr.1.0.0.source-code.SipListener Maven / Gradle / Ivy
The newest version!
// Generated from Sip.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 SipParser}.
*/
public interface SipListener extends ParseTreeListener {
/**
* Enter a parse tree produced by {@link SipParser#sipUri}.
* @param ctx the parse tree
*/
void enterSipUri(SipParser.SipUriContext ctx);
/**
* Exit a parse tree produced by {@link SipParser#sipUri}.
* @param ctx the parse tree
*/
void exitSipUri(SipParser.SipUriContext ctx);
/**
* Enter a parse tree produced by {@link SipParser#sipsUri}.
* @param ctx the parse tree
*/
void enterSipsUri(SipParser.SipsUriContext ctx);
/**
* Exit a parse tree produced by {@link SipParser#sipsUri}.
* @param ctx the parse tree
*/
void exitSipsUri(SipParser.SipsUriContext ctx);
/**
* Enter a parse tree produced by {@link SipParser#coreUri}.
* @param ctx the parse tree
*/
void enterCoreUri(SipParser.CoreUriContext ctx);
/**
* Exit a parse tree produced by {@link SipParser#coreUri}.
* @param ctx the parse tree
*/
void exitCoreUri(SipParser.CoreUriContext ctx);
/**
* Enter a parse tree produced by {@link SipParser#hostPort}.
* @param ctx the parse tree
*/
void enterHostPort(SipParser.HostPortContext ctx);
/**
* Exit a parse tree produced by {@link SipParser#hostPort}.
* @param ctx the parse tree
*/
void exitHostPort(SipParser.HostPortContext ctx);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy