From d26c2487289376bef84c9e9a815e6ebbf832a1a4 Mon Sep 17 00:00:00 2001 From: Diomidis Spinellis Date: Mon, 26 Aug 2002 08:44:39 +0000 Subject: [PATCH] Updated for release. --- index.html | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ web/index.html | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 108 insertions(+) diff --git a/index.html b/index.html index 20cd978..df87f2e 100644 --- a/index.html +++ b/index.html @@ -98,6 +98,8 @@ UMLGraph allows you to model
  • classes (specified as Java classes)
  • attributes (specified as Java fields)
  • operations (specified as Java methods) +
  • stereotypes (using the @stereotype name tag) +
  • tagged values (using the @tagvalue name value tag)
  • implementation relationships (specified using the Java implements declaration)
  • generalization relationships (specified using the Java extends declaration or (for multiple inheritance) the javadoc @extends tag)
  • association relationships (specified using the javadoc @assoc tag) @@ -184,6 +186,19 @@ You can download it in source and compiled format from the following links:
  • Makefile (GNU make) +

    Version History

    +
    +
    Version 1.18 2002/08/26
    +
      +
    • Can now specify class-local options. +
    • Support for the @tagvalue tag. +
    • Support for the @stereotype tag. +
    • Added nodefillcolor option. +
    + +
    Version 1.15 2002/07/26
    First public release. +
    +

    More Examples

    Generalisation Relationships

    @@ -433,6 +448,45 @@ abstract interface Response {}
    Download the declarative specification, the generated dot code. +

    Class Stereotypes and Tagged Values

    +
    +
    +
    +/*
    + * Class stereotypes and tagged values
    + * UML User Guide p. 439
    + */
    +
    +/** 
    + * @opt attributes 
    + * @opt operations 
    + * @opt types 
    + * @hidden
    + */
    +class UMLOptions {}
    +
    +/** @hidden */
    +class Action {}
    +
    +/** 
    + * @stereotype container 
    + * @tagvalue version 3.2
    + */
    +class ActionQueue {
    +	void add(Action a) {};
    +	/** @tagvalue version 1.0 */
    +	void add(Action a, int n) {};
    +	void remove(int n) {};
    +	/** @stereotype query */
    +	int length() {};
    +	/** @stereotype "helper functions" */
    +	void reorder() {};
    +}
    +
    +
    + +
    +Download the declarative specification, the generated dot code.

    Diomidis Spinellis home page diff --git a/web/index.html b/web/index.html index 20cd978..df87f2e 100644 --- a/web/index.html +++ b/web/index.html @@ -98,6 +98,8 @@ UMLGraph allows you to model

  • classes (specified as Java classes)
  • attributes (specified as Java fields)
  • operations (specified as Java methods) +
  • stereotypes (using the @stereotype name tag) +
  • tagged values (using the @tagvalue name value tag)
  • implementation relationships (specified using the Java implements declaration)
  • generalization relationships (specified using the Java extends declaration or (for multiple inheritance) the javadoc @extends tag)
  • association relationships (specified using the javadoc @assoc tag) @@ -184,6 +186,19 @@ You can download it in source and compiled format from the following links:
  • Makefile (GNU make) +

    Version History

    +
    +
    Version 1.18 2002/08/26
    +
      +
    • Can now specify class-local options. +
    • Support for the @tagvalue tag. +
    • Support for the @stereotype tag. +
    • Added nodefillcolor option. +
    + +
    Version 1.15 2002/07/26
    First public release. +
    +

    More Examples

    Generalisation Relationships

    @@ -433,6 +448,45 @@ abstract interface Response {}
    Download the declarative specification, the generated dot code. +

    Class Stereotypes and Tagged Values

    +
    +
    +
    +/*
    + * Class stereotypes and tagged values
    + * UML User Guide p. 439
    + */
    +
    +/** 
    + * @opt attributes 
    + * @opt operations 
    + * @opt types 
    + * @hidden
    + */
    +class UMLOptions {}
    +
    +/** @hidden */
    +class Action {}
    +
    +/** 
    + * @stereotype container 
    + * @tagvalue version 3.2
    + */
    +class ActionQueue {
    +	void add(Action a) {};
    +	/** @tagvalue version 1.0 */
    +	void add(Action a, int n) {};
    +	void remove(int n) {};
    +	/** @stereotype query */
    +	int length() {};
    +	/** @stereotype "helper functions" */
    +	void reorder() {};
    +}
    +
    +
    + +
    +Download the declarative specification, the generated dot code.

    Diomidis Spinellis home page