
org.opentripplanner.model.plan.legreference.LegReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
The newest version!
package org.opentripplanner.model.plan.legreference;
import javax.annotation.Nullable;
import org.opentripplanner.model.plan.Leg;
import org.opentripplanner.transit.service.TransitService;
/**
* Marker interface for various types of leg references
*/
public interface LegReference {
@Nullable
Leg getLeg(TransitService transitService);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy