Added a couple of methods, a concrete and an abstract one, in the same class

This commit is contained in:
Andrea Aime 2006-02-12 09:40:46 +00:00
parent ea955c8b37
commit 6fc777d81f
1 changed files with 10 additions and 1 deletions

View File

@ -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