Author: thn Date: 2011-02-17 08:34:57-0800 New Revision: 19039 Modified: trunk/src/argouml-core-model/src/org/argouml/model/AbstractExtensionMechanismsHelperDecorator.java
Log: new method for getting common types for tagged values Modified: trunk/src/argouml-core-model/src/org/argouml/model/AbstractExtensionMechanismsHelperDecorator.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-core-model/src/org/argouml/model/AbstractExtensionMechanismsHelperDecorator.java?view=diff&pathrev=19039&r1=19038&r2=19039 ============================================================================== --- trunk/src/argouml-core-model/src/org/argouml/model/AbstractExtensionMechanismsHelperDecorator.java (original) +++ trunk/src/argouml-core-model/src/org/argouml/model/AbstractExtensionMechanismsHelperDecorator.java 2011-02-17 08:34:57-0800 @@ -7,7 +7,7 @@ * http://www.eclipse.org/legal/epl-v10.html * * Contributors: - * thn + * Thomas Neustupny ******************************************************************************* * * Some portions of this file was previously release using the BSD License: @@ -104,6 +104,10 @@ return impl.getStereotypes(models); } + public Collection getCommonTaggedValueTypes() { + return impl.getCommonTaggedValueTypes(); + } + public void addCopyStereotype(Object modelElement, Object stereotype) { impl.addCopyStereotype(modelElement, stereotype); } ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2705121 To unsubscribe from this discussion, e-mail: [[email protected]].
