use of org.batfish.representation.cisco.RouteMapSetDeleteCommunityLine in project batfish by batfish.
the class CiscoControlPlaneExtractor method exitSet_comm_list_delete_rm_stanza.
@Override
public void exitSet_comm_list_delete_rm_stanza(Set_comm_list_delete_rm_stanzaContext ctx) {
String name = ctx.name.getText();
int statementLine = ctx.getStart().getLine();
RouteMapSetDeleteCommunityLine line = new RouteMapSetDeleteCommunityLine(name, statementLine);
_currentRouteMapClause.addSetLine(line);
}
Aggregations