01: // $Id$
02: package net.sf.whatever.test;
03:
04: /**
05: * @hidden
06: * @opt postfixpackage
07: * @opt edgefontname arialbd
08: * @opt nodefontname arial
09: * @opt nodefontsize 9
10: * @opt nodefontabstract ariali
11: * @opt nodefontclassname arialbd
12: * @opt nodefontclassabstractname arialbi
13: * @opt nodefonttagsize 6
14: * @opt nodefonttagname ariali
15: * @opt nodefontpackagesize 8
16: * @opt operations
17: * @opt attributes
18: * @opt qualify
19: * @opt types
20: */
21: class UMLOptions {
22: }
23:
24: /**
25: * @stereotype base
26: * @tagvalue since 1.0
27: */
28: abstract class AbstractBase {
29: /** @tagvalue since 1.5 */
30: private int field;
31:
32: public abstract void abstractMethod();
33:
34: public int concreteMethod() {
35: return 1;
36: }
37: }
38:
39: /**
40: * @composed 1 has * from.Outer.Space.AlienClass
41: */
42: class Composite extends AbstractBase {
43: }
44:
45: public class Style extends AbstractBase {
46: }
|