mirror of https://github.com/dspinellis/UMLGraph
28 lines
493 B
Java
28 lines
493 B
Java
// $Id$
|
|
|
|
/**
|
|
* 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() {}
|
|
}
|