我尝试使用 更改 UMLGraph 中关联文本的字体大小,@opt edgefontsize
但似乎使用了默认字体大小。
请注意,该选项@opt edgefontname
工作正常。
我上线了UMLGraph doclet version R5_7_2-32-g40b5a6
这里有一个演示 - 所有字体都增加到 22 种,但关联文本仍然很小。
/**
* @hidden
* @opt postfixpackage
* @opt nodefontclassname "Arial Bold"
* @opt nodefontclassabstractname "Arial Italic"
* @opt nodefontclasssize 22
*
* @opt nodefontname "Arial"
* @opt nodefontabstractname "Times New Roman Italic"
* @opt nodefontsize 22
*
* @opt nodefonttagname "Courier New Italic"
* @opt nodefonttagsize 22
*
* @opt nodefontpackagename "Comic Sans MS"
* @opt nodefontpackagesize 22
*
* @opt edgefontname "Courier New Italic"
* @opt edgefontsize 22
* @opt types
*/
class UMLOptions{}
/**
* @opt attributes
* @assoc " " " " parent_id B
*/
class A {
public int id;
}
/**
* @opt attributes
*/
class B {
public int id;
}
结果