
org.opentripplanner.netex.validation.AbstractHMapValidationRule Maven / Gradle / Ivy
The newest version!
package org.opentripplanner.netex.validation;
import org.opentripplanner.netex.index.api.HMapValidationRule;
import org.opentripplanner.netex.index.api.NetexEntityIndexReadOnlyView;
abstract class AbstractHMapValidationRule implements HMapValidationRule {
protected NetexEntityIndexReadOnlyView index;
AbstractHMapValidationRule setup(NetexEntityIndexReadOnlyView index) {
this.index = index;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy