Author: thn Date: 2011-02-28 02:07:17-0800 New Revision: 19083 Modified: trunk/src/argouml-core-umlpropertypanels/src/org/argouml/core/propertypanels/model/GetterSetterManagerImpl.java
Log: UML2 turn off sorting for tagged definitions Modified: trunk/src/argouml-core-umlpropertypanels/src/org/argouml/core/propertypanels/model/GetterSetterManagerImpl.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-core-umlpropertypanels/src/org/argouml/core/propertypanels/model/GetterSetterManagerImpl.java?view=diff&pathrev=19083&r1=19082&r2=19083 ============================================================================== --- trunk/src/argouml-core-umlpropertypanels/src/org/argouml/core/propertypanels/model/GetterSetterManagerImpl.java (original) +++ trunk/src/argouml-core-umlpropertypanels/src/org/argouml/core/propertypanels/model/GetterSetterManagerImpl.java 2011-02-28 02:07:17-0800 @@ -302,7 +302,9 @@ public Collection getOptions(Object modelElement, Collection<Class<?>> types) { LinkedList<String> list = new LinkedList<String>( Model.getFacade().getTagDefinitions(modelElement)); - Collections.sort(list); + if (Model.getFacade().getUmlVersion().charAt(0) == '1') { + Collections.sort(list); + } return list; } ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2708182 To unsubscribe from this discussion, e-mail: [[email protected]].
