mirror of https://github.com/dspinellis/UMLGraph
Added a couple of methods, a concrete and an abstract one, in the same class
This commit is contained in:
parent
ea955c8b37
commit
6fc777d81f
|
|
@ -1,7 +1,16 @@
|
|||
// $Id$
|
||||
package test;
|
||||
|
||||
abstract class AbstractNode {}
|
||||
/**
|
||||
* @hidden
|
||||
* @opt operations
|
||||
*/
|
||||
class UMLOptions{}
|
||||
|
||||
abstract class AbstractNode {
|
||||
public abstract void abstractMethod();
|
||||
public int concreteMethod() { return 1; }
|
||||
}
|
||||
|
||||
/**
|
||||
* @composed 1 has * test.AbstractNode
|
||||
|
|
|
|||
Loading…
Reference in New Issue