/* $Id: PropPanelOperation.java 18589 2010-07-29 00:26:09Z bobtarling $ ***************************************************************************** * Copyright (c) 2009 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 * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * thn ***************************************************************************** * * Some portions of this file was previously release using the BSD License: */ // Copyright (c) 1996-2007 The Regents of the University of California. All // Rights Reserved. Permission to use, copy, modify, and distribute this // software and its documentation without fee, and without a written // agreement is hereby granted, provided that the above copyright notice // and this paragraph appear in all copies. This software program and // documentation are copyrighted by The Regents of the University of // California. The software program and documentation are supplied "AS // IS", without any accompanying services from The Regents. The Regents // does not warrant that the operation of the program will be // uninterrupted or error-free. The end-user understands that the program // was developed for research purposes and is advised not to rely // exclusively on the program for any reason. IN NO EVENT SHALL THE // UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, // SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, // ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF // THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF // SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE // PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF // CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, // UPDATES, ENHANCEMENTS, OR MODIFICATIONS. package org.argouml.uml.ui.foundation.core; import java.awt.event.ActionEvent; import java.util.List; import javax.swing.Action; import javax.swing.Icon; import javax.swing.JPanel; import javax.swing.JScrollPane; import org.argouml.application.helpers.ResourceLoaderWrapper; import org.argouml.i18n.Translator; import org.argouml.model.Model; import org.argouml.ui.targetmanager.TargetManager; import org.argouml.uml.ui.AbstractActionNewModelElement; import org.argouml.uml.ui.ActionNavigateOwner; import org.argouml.uml.ui.ActionNavigateUpNextDown; import org.argouml.uml.ui.ActionNavigateUpPreviousDown; import org.argouml.uml.ui.UMLLinkedList; import org.argouml.uml.ui.UMLTextArea2; import org.argouml.uml.ui.foundation.extension_mechanisms.ActionNewStereotype; /** * A property panel for Operations of Classifiers. * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property * panels module */ @Deprecated public class PropPanelOperation extends PropPanelFeature { /** * The serial version. */ private static final long serialVersionUID = -8231585002039922761L; /** * The constructor. */ public PropPanelOperation() { super("label.operation", lookupIcon("Operation")); addField(Translator.localize("label.name"), getNameTextField()); addField(Translator.localize("label.owner"), getOwnerScroll()); addField(Translator.localize("label.parameters"), new JScrollPane(new UMLLinkedList( new UMLClassifierParameterListModel(), true, false))); addSeparator(); add(getVisibilityPanel()); JPanel modifiersPanel = createBorderPanel(Translator.localize( "label.modifiers")); modifiersPanel.add(new UMLGeneralizableElementAbstractCheckBox()); modifiersPanel.add(new UMLGeneralizableElementLeafCheckBox()); modifiersPanel.add(new UMLGeneralizableElementRootCheckBox()); modifiersPanel.add(new UMLBehavioralFeatureQueryCheckBox()); modifiersPanel.add(new UMLFeatureOwnerScopeCheckBox()); add(modifiersPanel); add(new UMLOperationConcurrencyRadioButtonPanel( Translator.localize("label.concurrency"), true)); addSeparator(); if (Model.getFacade().getUmlVersion().charAt(0) == '1') { addField(Translator.localize("label.raisedsignals"), new JScrollPane(new UMLLinkedList( new UMLOperationRaisedSignalsListModel()))); } else { // UML2 addField(Translator.localize("label.raisedexceptions"), new JScrollPane(new UMLLinkedList( new UMLOperationRaisedExceptionsListModel()))); } addField(Translator.localize("label.methods"), new JScrollPane(new UMLLinkedList( new UMLOperationMethodsListModel()))); UMLTextArea2 osta = new UMLTextArea2( new UMLOperationSpecificationDocument()); osta.setRows(3); // make the field multiline by default addField(Translator.localize("label.specification"), new JScrollPane(osta)); addAction(new ActionNavigateOwner()); addAction(new ActionNavigateUpPreviousDown() { public List getFamily(Object parent) { return Model.getFacade().getOperations(parent); } public Object getParent(Object child) { return Model.getFacade().getOwner(child); } }); addAction(new ActionNavigateUpNextDown() { public List getFamily(Object parent) { return Model.getFacade().getOperations(parent); } public Object getParent(Object child) { return Model.getFacade().getOwner(child); } }); addAction(new ActionAddOperation()); addAction(new ActionNewParameter()); if (Model.getFacade().getUmlVersion().charAt(0) == '1') { addAction(new ActionNewRaisedSignal()); } else { // UML2 addAction(new ActionNewRaisedException()); } addAction(new ActionNewMethod()); addAction(new ActionAddDataType()); addAction(new ActionAddEnumeration()); addAction(new ActionNewStereotype()); addAction(getDeleteAction()); } /** * Add a new RaisedSignal to the current target. */ public void addRaisedSignal() { if (Model.getFacade().getUmlVersion().charAt(0) != '1') { return; } Object target = getTarget(); if (Model.getFacade().isAOperation(target)) { Object oper = target; Object newSignal = Model.getCommonBehaviorFactory() .createSignal(); Model.getCoreHelper().addOwnedElement( Model.getFacade().getNamespace( Model.getFacade().getOwner(oper)), newSignal); Model.getCoreHelper().addRaisedSignal(oper, newSignal); TargetManager.getInstance().setTarget(newSignal); } } /** * Add a new RaisedException to the current target. */ public void addRaisedException() { if (Model.getFacade().getUmlVersion().charAt(0) != '2') { return; } Object target = getTarget(); if (Model.getFacade().isAOperation(target)) { Object oper = target; Object newException = Model.getCommonBehaviorFactory() .createException(); Model.getCoreHelper().addOwnedElement( Model.getFacade().getNamespace( Model.getFacade().getOwner(oper)), newException); Model.getCoreHelper().addRaisedException(oper, newException); TargetManager.getInstance().setTarget(newException); } } /** * Add a Method to the current target. */ public void addMethod() { Object target = getTarget(); if (Model.getFacade().isAOperation(target)) { Object oper = target; String name = Model.getFacade().getName(oper); Object newMethod = Model.getCoreFactory().buildMethod(name); Model.getCoreHelper().addMethod(oper, newMethod); Model.getCoreHelper().addFeature(Model.getFacade().getOwner(oper), newMethod); TargetManager.getInstance().setTarget(newMethod); } } private class ActionNewRaisedSignal extends AbstractActionNewModelElement { /** * The serial version. */ private static final long serialVersionUID = -2380798799656866520L; /** * Construct an action to create a new RaisedException. */ public ActionNewRaisedSignal() { super("button.new-raised-signal"); putValue(Action.NAME, Translator.localize("button.new-raised-signal")); Icon icon = ResourceLoaderWrapper.lookupIcon("SignalSending"); putValue(Action.SMALL_ICON, icon); } /* * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent) */ @Override public void actionPerformed(ActionEvent e) { Object target = TargetManager.getInstance().getModelTarget(); if (Model.getFacade().isAOperation(target)) { addRaisedSignal(); super.actionPerformed(e); } } } private class ActionNewRaisedException extends AbstractActionNewModelElement { /** * Construct an action to create a new RaisedException. */ public ActionNewRaisedException() { super("button.new-raised-exception"); putValue(Action.NAME, Translator.localize("button.new-raised-exception")); Icon icon = ResourceLoaderWrapper.lookupIcon("SignalSending"); putValue(Action.SMALL_ICON, icon); } /* * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent) */ @Override public void actionPerformed(ActionEvent e) { Object target = TargetManager.getInstance().getModelTarget(); if (Model.getFacade().isAOperation(target)) { addRaisedException(); super.actionPerformed(e); } } } private class ActionNewMethod extends AbstractActionNewModelElement { /** * The serial version. */ private static final long serialVersionUID = 1605755146025527381L; /** * Construct an action to create a new Method. */ public ActionNewMethod() { super("button.new-method"); putValue(Action.NAME, Translator.localize("button.new-method")); Icon icon = ResourceLoaderWrapper.lookupIcon("Method"); putValue(Action.SMALL_ICON, icon); } /* * @see org.tigris.gef.undo.UndoableAction#isEnabled() */ @Override public boolean isEnabled() { Object target = TargetManager.getInstance().getModelTarget(); boolean result = true; if (Model.getFacade().isAOperation(target)) { Object owner = Model.getFacade().getOwner(target); if (owner == null || Model.getFacade().isAInterface(owner)) { result = false; } } return super.isEnabled() && result; } /* * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent) */ @Override public void actionPerformed(ActionEvent e) { super.actionPerformed(e); Object target = TargetManager.getInstance().getModelTarget(); if (Model.getFacade().isAOperation(target)) { addMethod(); } } } /** * Appropriate namespace is the namespace of our class, * not the class itself. * @return the namespace * * @see org.argouml.uml.ui.PropPanel#getDisplayNamespace() */ @Override protected Object getDisplayNamespace() { Object namespace = null; Object target = getTarget(); if (Model.getFacade().isAAttribute(target)) { if (Model.getFacade().getOwner(target) != null) { namespace = Model.getFacade().getNamespace( Model.getFacade().getOwner(target)); } } return namespace; } }