
org.opentripplanner.framework.lang.Sandbox 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.framework.lang;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation is purely for documentation purposes and tells developers that a component
* is part of sandbox code.
*/
@Target({ FIELD, METHOD, CONSTRUCTOR, TYPE })
@Retention(RetentionPolicy.SOURCE)
public @interface Sandbox {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy