@Documented
@Retention(value=CLASS)
@Target(value={METHOD,CONSTRUCTOR,FIELD,TYPE,PACKAGE})
public @interface InternalApi
For example, this annotation should be used when the Scala private[akka]
access restriction is used,
as Java has no way of representing this package restricted access and such methods and classes are represented
as public
in byte-code.
If a method/class annotated with this method has a javadoc/scaladoc comment, the first line MUST include
INTERNAL API
in order to be easily identifiable from generated documentation. Additional information
may be put on the same line as the INTERNAL API comment in order to clarify further.