mirror of https://github.com/dspinellis/UMLGraph
76 lines
1.1 KiB
XML
76 lines
1.1 KiB
XML
<?xml version="1.0" ?>
|
|
<!-- $Id$ -->
|
|
<notes>
|
|
<fmtcode ext="java">
|
|
/**
|
|
* @hidden
|
|
* @opt nodefontcolor "blue"
|
|
*/
|
|
class UMLNoteOptions{}
|
|
|
|
/**
|
|
* Structural Things
|
|
* @opt commentname
|
|
* @note Notes can
|
|
* be extended to
|
|
* span multiple lines
|
|
*/
|
|
class Structural{}
|
|
|
|
/**
|
|
* spelling.java
|
|
* @opt shape component
|
|
* @opt commentname
|
|
* @note Component
|
|
*/
|
|
class Component extends Structural{}
|
|
|
|
/** @opt shape node */
|
|
class Node extends Structural{}
|
|
|
|
/**
|
|
* Chain of
|
|
* responsibility
|
|
* @opt shape collaboration
|
|
* @opt commentname
|
|
* @note Collaboration
|
|
*/
|
|
class Collaboration extends Structural{}
|
|
|
|
/**
|
|
* Place order
|
|
* @opt shape usecase
|
|
* @opt commentname
|
|
* @note Use Case
|
|
*/
|
|
class UseCase extends Structural{}
|
|
|
|
/**
|
|
* Business rules
|
|
* @opt shape package
|
|
* @opt commentname
|
|
* @note Package
|
|
*/
|
|
class Package{}
|
|
|
|
/**
|
|
* @opt all
|
|
* @note Class
|
|
*/
|
|
class Counter extends Structural {
|
|
static public int counter;
|
|
public int getCounter();
|
|
}
|
|
|
|
/**
|
|
* @opt shape activeclass
|
|
* @opt all
|
|
* @note Active Class
|
|
*/
|
|
class RunningCounter extends Counter{}
|
|
|
|
</fmtcode>
|
|
<p/>
|
|
<img src="shapes.gif" alt="UML diagram showing the shapes supported by UMLGraph" />
|
|
</notes>
|