net.java.ao.Polymorphicアノテーションの説明(Javadoc)

Polymorphicがよくわからないので、
https://activeobjects.dev.java.net/api/net/java/ao/Polymorphic.htmlを日本語訳してみました。

net.java.ao.Polymorphic

エンティティ型をポリモフィックな抽象型に指定する。指定されたインタフェースは、(そのインタフェースを継承する)他のエンティティのポリモフィックな上位型となり、テーブルには割り当てられません。従来の継承とは異なり、ポリモフィック型の継承では、データベースに格納された下位型のインスタンスを、ActiveObjects中で上位型として「型付けされた」フィールドに格納できるようになります。

Tags a given entity type as polymorphically abstract. This means that the given type will not peer to any table, but rather represent a polymorphic supertype to other entities (entities which extend the given interface). Unlike conventional inheritence, which also causes the supertype to not peer to a table, polymorphic type inheritence allows instances of the subtype to be stored in the database into fields which are "typed" in ActiveObjects as the supertype. All of this is really much simpler than it sounds:

public interface Person extends Entity {
	public Computer getComputer();
	public void setComputer(Computer computer);
}

@Polymorphic
public interface Computer extends Entity {
	public float getSpeed();
	public void setSpeed(float speed);
}

public interface Mac extends Computer {}
public interface PC extends Computer {}

例では、Computerはデータベース中のテーブルには対応しません。同様に、PersonはgetComputer()に対応するフィールドの外部キーを持ちません。エンティティ型がポリモーフィックな場合、Person中では下位型をポリモーフィック的に使用することができます。これは本質的に抽象クラスの概念に類似した、データベースへのマッピングです。

In this case, Computer does not correspond with any table in the database. Likewise, Person has no foreign keys for the corresponding field to getComputer(). When an entity type is polymorphic, its subtypes can be used polymorphically as they are in Person. This is essentially the conceptual analog of an abstract class when mapped into the database.