Jexi设计 (6) Document类的UML

前面讨论了用Document类表示MVC结构中的文档,并抽象出接口Glyph用于Composite模式,派生两类Glyph:基本数据结构CharPictureParagraph;显示模型结构RowPage,UML图如下:

Glyph体系的UML图

对于任意一个Glyph对象,它可以知道:

  • 自身的子结点 - child(), size();
  • 添加,删除子结点 - add(), remove();
  • 自身占据的大小 - width(), height();
  • 如何画出自身 - draw()。

如果某一个具体的子类不支持某种方法,就直接抛出UnsupportedOperationException

Row是联系Paragraph和Page的对象,Paragraph通过排版产生Row,然后构造出Page。

为了和显示联系起来,添加Style以决定如何显示。为了独立出排版逻辑,添加Compositor,整个Document类的关系如下:

Document UML

点击此处查看全图

欢迎各位Blogger提出意见!

你可能感兴趣的:(数据结构,mvc,文档,UML)