Author: mvw Date: 2012-07-09 23:25:06-0700 New Revision: 19893 Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/TabDocumentation.java
Log: Issue 5601: Derived checkbox is missing. Added on the documentation tab for all modelelements. Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/TabDocumentation.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/TabDocumentation.java?view=diff&pathrev=19893&r1=19892&r2=19893 ============================================================================== --- trunk/src/argouml-app/src/org/argouml/uml/ui/TabDocumentation.java (original) +++ trunk/src/argouml-app/src/org/argouml/uml/ui/TabDocumentation.java 2012-07-09 23:25:06-0700 @@ -1,6 +1,6 @@ /* $Id$ ***************************************************************************** - * Copyright (c) 2009 Contributors - see below + * Copyright (c) 2009-2012 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: @@ -84,7 +85,7 @@ * <li>uses the new event pump introduced late 2002 by Jaap</ul><p> * * UMLModelElementTaggedValueDocument is used to access the tagged values of an - * MModelElement. + * ModelElement. */ public class TabDocumentation extends PropPanel implements TabModelTarget { @@ -113,6 +114,9 @@ addField(Translator.localize("label.deprecated"), new UMLDeprecatedCheckBox()); + addField(Translator.localize("label.derived"), + new UMLDerivedCheckBox()); + UMLTextArea2 see = new UMLTextArea2( new UMLModelElementTaggedValueDocument(Argo.SEE_TAG)); see.setRows(2); ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2982027 To unsubscribe from this discussion, e-mail: [[email protected]].
