我有一个界面:
public interface MyEntity {
//HIbernate version
public long getOptLock();
//these method are used to keep track of Last modified timestamp
public void update();
public void persist();
}
这是由我的对象模型中的大多数类实现的。现在,我知道如何在类图中显示interface realisation。
问题在于,这个特定的接口是由大多数类实现的,这使得类图变得混乱。是否有一种显示界面实现的替代方法?