mirror of https://github.com/dspinellis/UMLGraph
36 lines
679 B
XML
36 lines
679 B
XML
<?xml version="1.0" ?>
|
|
<notes>
|
|
<table>
|
|
<tr><td>
|
|
<fmtcode ext="java">
|
|
/**
|
|
* Attribute and operation visility
|
|
* UML User Guide p. 123
|
|
*
|
|
* @opt operations
|
|
* @opt attributes
|
|
* @opt types
|
|
* @opt visibility
|
|
* @hidden
|
|
*/
|
|
class UMLOptions {}
|
|
|
|
/** @hidden */
|
|
class Tool {}
|
|
|
|
class Toolbar {
|
|
protected Tool currentSelection;
|
|
protected Integer toolCount;
|
|
public void pickItem(Integer i) {}
|
|
public void addTool(Tool t) {}
|
|
public void removeTool(Integer i) {}
|
|
public Tool getTool() {}
|
|
protected void checkOrphans() {}
|
|
private void compact() {}
|
|
}
|
|
</fmtcode>
|
|
</td><td>
|
|
<img src="vis.gif" alt="UML diagram showing attribute and operation visility" />
|
|
</td></tr></table>
|
|
</notes>
|