Author: mvw Date: 2011-05-13 00:10:53-0700 New Revision: 19414 Modified: trunk/src/argouml-core-model/src/org/argouml/model/AbstractStateMachinesHelperDecorator.java
Log: Grmpf... forgot the decorator - now the tests will work. Modified: trunk/src/argouml-core-model/src/org/argouml/model/AbstractStateMachinesHelperDecorator.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-core-model/src/org/argouml/model/AbstractStateMachinesHelperDecorator.java?view=diff&pathrev=19414&r1=19413&r2=19414 ============================================================================== --- trunk/src/argouml-core-model/src/org/argouml/model/AbstractStateMachinesHelperDecorator.java (original) +++ trunk/src/argouml-core-model/src/org/argouml/model/AbstractStateMachinesHelperDecorator.java 2011-05-13 00:10:53-0700 @@ -1,6 +1,6 @@ /* $Id$ ******************************************************************************* - * Copyright (c) 2009 Contributors - see below + * Copyright (c) 2009-2011 Contributors - see below * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -8,6 +8,7 @@ * * Contributors: * bobtarling + * Michiel van der Wulp ******************************************************************************* * * Some portions of this file was previously release using the BSD License: @@ -130,6 +131,10 @@ public Collection getAllSubStates(Object compState) { return impl.getAllSubStates(compState); } + + public Collection getTransitions(Object handle, boolean includeInternals) { + return impl.getTransitions(handle, includeInternals); + } public void removeSubvertex(Object handle, Object subvertex) { impl.removeSubvertex(handle, subvertex); ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2735274 To unsubscribe from this discussion, e-mail: [[email protected]].
