1 package org.slf4j.migrator.line; 2 3 import java.util.Iterator; 4 5 6 public interface RuleSet { 7 8 Iterator<ConversionRule> iterator(); 9 10 }