add link from Actor JavaDoc to UntypedActor

This commit is contained in:
Roland Kuhn 2013-04-09 10:38:24 +03:00
parent 6e2c4b9989
commit 632c310e9a

View file

@ -369,6 +369,8 @@ object Actor {
* `context`. The only abstract method is `receive` which shall return the
* initial behavior of the actor as a partial function (behavior can be changed
* using `context.become` and `context.unbecome`).
*
* This is the Scala API (hence the Scala code below), for the Java API see [[akka.actor.UntypedActor]].
*
* {{{
* class ExampleActor extends Actor {