// Generated from /Users/samppa/git/parkandrideAPI/application/src/main/antlr/WKT.g4 by ANTLR 4.5 package fi.hsl.parkandride.core.domain.wkt; 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 WKTListener}, * which can be extended to create a listener which only needs to handle a subset * of the available methods. */ public class WKTBaseListener implements WKTListener { /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterGeometry(@NotNull WKTParser.GeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitGeometry(@NotNull WKTParser.GeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterPointGeometry(@NotNull WKTParser.PointGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitPointGeometry(@NotNull WKTParser.PointGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterLineStringGeometry(@NotNull WKTParser.LineStringGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitLineStringGeometry(@NotNull WKTParser.LineStringGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterPolygonGeometry(@NotNull WKTParser.PolygonGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitPolygonGeometry(@NotNull WKTParser.PolygonGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterMultiPointGeometry(@NotNull WKTParser.MultiPointGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitMultiPointGeometry(@NotNull WKTParser.MultiPointGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterMultiLineStringGeometry(@NotNull WKTParser.MultiLineStringGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitMultiLineStringGeometry(@NotNull WKTParser.MultiLineStringGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterMultiPolygonGeometry(@NotNull WKTParser.MultiPolygonGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitMultiPolygonGeometry(@NotNull WKTParser.MultiPolygonGeometryContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterPointOrClosedPoint(@NotNull WKTParser.PointOrClosedPointContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitPointOrClosedPoint(@NotNull WKTParser.PointOrClosedPointContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterPolygon(@NotNull WKTParser.PolygonContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitPolygon(@NotNull WKTParser.PolygonContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterLineString(@NotNull WKTParser.LineStringContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitLineString(@NotNull WKTParser.LineStringContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterPoint(@NotNull WKTParser.PointContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitPoint(@NotNull WKTParser.PointContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterEveryRule(@NotNull ParserRuleContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitEveryRule(@NotNull ParserRuleContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void visitTerminal(@NotNull TerminalNode node) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void visitErrorNode(@NotNull ErrorNode node) { } }