svn commit: r18591 - trunk/src/argouml-app/src/org/argouml/uml/ui: behavior/common_behavior behavior/use_cases model_management

[email protected]
Newsgroups gmane.comp.lang.uml.argouml.cvs
Message-ID <[email protected]>
Author: bobtarling
Date: 2010-07-28 17:36:56-0700
New Revision: 18591

Modified:
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelAction.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelActionSequence.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelArgument.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelCallAction.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelComponentInstance.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelDestroyAction.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelException.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelInstance.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelLink.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelLinkEnd.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelNodeInstance.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelObject.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelReception.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelReturnAction.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelSignal.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelStimulus.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelTerminateAction.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelUninterpretedAction.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelActor.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelExtend.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelExtensionPoint.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelInclude.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelUseCase.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelElementImport.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelModel.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelPackage.java
   trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelSubsystem.java

Log:
Deprecating the old property panels

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelAction.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelAction.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelAction.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelAction.java	2010-07-28 17:36:56-0700
@@ -63,7 +63,10 @@
 
 /**
  * An abstract representatation of the properties panel of an Action.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public abstract class PropPanelAction extends PropPanelModelElement {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelActionSequence.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelActionSequence.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelActionSequence.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelActionSequence.java	2010-07-28 17:36:56-0700
@@ -59,7 +59,10 @@
 
 /**
  * Properties panel of an ActionSequence.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelActionSequence extends PropPanelModelElement {
 
     private JScrollPane actionsScroll;

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelArgument.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelArgument.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelArgument.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelArgument.java	2010-07-28 17:36:56-0700
@@ -55,7 +55,10 @@
  * @since aug 10, 2003
  * @author Decki, Endi, Yayan. Polytechnic of Bandung Indonesia, Computer
  *         Engineering Departement
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelArgument extends PropPanelModelElement {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelCallAction.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelCallAction.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelCallAction.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelCallAction.java	2010-07-28 17:36:56-0700
@@ -56,7 +56,10 @@
 
 /**
  * The properties panel for a CallAction.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelCallAction extends PropPanelAction {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelComponentInstance.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelComponentInstance.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelComponentInstance.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelComponentInstance.java	2010-07-28 17:36:56-0700
@@ -52,7 +52,10 @@
 
 /**
  * The properties panel for a ComponentInstance.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelComponentInstance extends PropPanelInstance {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java	2010-07-28 17:36:56-0700
@@ -49,7 +49,10 @@
  * <p>
  * TODO: this property panel needs refactoring to remove dependency on old gui
  * components.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelCreateAction extends PropPanelAction {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelDestroyAction.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelDestroyAction.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelDestroyAction.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelDestroyAction.java	2010-07-28 17:36:56-0700
@@ -44,7 +44,10 @@
  * <p>
  * TODO: this property panel needs refactoring to remove dependency on
  *       old gui components.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelDestroyAction extends PropPanelAction {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelException.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelException.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelException.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelException.java	2010-07-28 17:36:56-0700
@@ -46,7 +46,10 @@
  * handle it separately.
  * 
  * @author Tom Morris
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelException extends PropPanelSignal {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelInstance.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelInstance.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelInstance.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelInstance.java	2010-07-28 17:36:56-0700
@@ -47,7 +47,10 @@
  * The abstract properties panel for any type of Instance.
  *
  * @author jrobbins
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public abstract class PropPanelInstance extends PropPanelModelElement {
 
     private JPanel stimuliSenderScroll;

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelLink.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelLink.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelLink.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelLink.java	2010-07-28 17:36:56-0700
@@ -65,8 +65,10 @@
 
 /**
  * The properties panel for a Link.
- *
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelLink extends PropPanelModelElement {
 
     private JComboBox associationSelector;

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelLinkEnd.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelLinkEnd.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelLinkEnd.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelLinkEnd.java	2010-07-28 17:36:56-0700
@@ -55,8 +55,10 @@
  * TODO: uses the associationEnd icon
  *
  * @author mkl
- *
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelLinkEnd extends PropPanelModelElement {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelNodeInstance.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelNodeInstance.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelNodeInstance.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelNodeInstance.java	2010-07-28 17:36:56-0700
@@ -55,7 +55,10 @@
  * <p>
  * TODO: this property panel needs refactoring to remove dependency on old gui
  * components.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelNodeInstance extends PropPanelInstance {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelObject.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelObject.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelObject.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelObject.java	2010-07-28 17:36:56-0700
@@ -50,7 +50,10 @@
 
 /**
  * The properties panel of an Object.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelObject extends PropPanelInstance {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelReception.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelReception.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelReception.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelReception.java	2010-07-28 17:36:56-0700
@@ -55,7 +55,10 @@
 
 /**
  * PropertyPanel for a Reception.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelReception extends PropPanelFeature {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelReturnAction.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelReturnAction.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelReturnAction.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelReturnAction.java	2010-07-28 17:36:56-0700
@@ -44,7 +44,10 @@
  * <p>
  * TODO: this property panel needs refactoring to remove dependency on
  *       old gui components.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelReturnAction extends PropPanelAction {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java	2010-07-28 17:36:56-0700
@@ -54,7 +54,10 @@
 
 /**
  * The properties panel for a SendAction.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelSendAction extends PropPanelAction {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelSignal.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelSignal.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelSignal.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelSignal.java	2010-07-28 17:36:56-0700
@@ -64,7 +64,10 @@
  * NOTE: Although the UML 1.4 spec (both sec. 2.9.2.20 and 3.77.2) says that
  * "parameters are specified as Attributes" the WFR in sect 2.9.3.20 is
  * <code>self.contents->isEmpty</code>, effectively prohibiting this.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelSignal extends PropPanelClassifier {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelStimulus.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelStimulus.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelStimulus.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelStimulus.java	2010-07-28 17:36:56-0700
@@ -50,7 +50,10 @@
  * The properties panel for a Stimulus.
  *
  * @author agauthie
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelStimulus extends PropPanelModelElement {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelTerminateAction.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelTerminateAction.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelTerminateAction.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelTerminateAction.java	2010-07-28 17:36:56-0700
@@ -44,7 +44,10 @@
  * <p>
  * TODO: this property panel needs refactoring to remove dependency on
  *       old gui components.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelTerminateAction extends PropPanelAction {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelUninterpretedAction.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelUninterpretedAction.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelUninterpretedAction.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/common_behavior/PropPanelUninterpretedAction.java	2010-07-28 17:36:56-0700
@@ -43,7 +43,10 @@
  * <p>
  * TODO: this property panel needs refactoring to remove dependency on
  *       old gui components.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelUninterpretedAction extends PropPanelAction {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelActor.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelActor.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelActor.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelActor.java	2010-07-28 17:36:56-0700
@@ -47,8 +47,10 @@
  * Builds the property panel for a actor.<p>
  *
  * @author jrobbins
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
-
+@Deprecated
 public class PropPanelActor extends PropPanelClassifier {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelExtend.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelExtend.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelExtend.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelExtend.java	2010-07-28 17:36:56-0700
@@ -65,7 +65,10 @@
  *       old GUI components.
  *
  * @author [email protected]
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelExtend extends PropPanelRelationship {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelExtensionPoint.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelExtensionPoint.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelExtensionPoint.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelExtensionPoint.java	2010-07-28 17:36:56-0700
@@ -60,7 +60,10 @@
  * This is a child of PropPanelModelElement.<p>
  *
  * @author Jeremy Bennett
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelExtensionPoint extends PropPanelModelElement {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelInclude.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelInclude.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelInclude.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelInclude.java	2010-07-28 17:36:56-0700
@@ -50,7 +50,10 @@
  * Builds the property panel for an Include relationship.<p>
  *
  * @author Jeremy Bennett
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelInclude extends PropPanelRelationship {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelUseCase.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelUseCase.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelUseCase.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/use_cases/PropPanelUseCase.java	2010-07-28 17:36:56-0700
@@ -58,7 +58,10 @@
  *
  * <em>Note</em>. ArgoUML does not currently support separate
  * compartments on the display for this.<p>
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelUseCase extends PropPanelClassifier {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelElementImport.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelElementImport.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelElementImport.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelElementImport.java	2010-07-28 17:36:56-0700
@@ -59,7 +59,10 @@
  * hence this properties panel does not show a name field.
  *
  * @author Michiel
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelElementImport extends PropPanelModelElement {
 
     private JPanel modifiersPanel;

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelModel.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelModel.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelModel.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelModel.java	2010-07-28 17:36:56-0700
@@ -51,7 +51,10 @@
 
 /**
  * A Property panel for a model.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelModel extends PropPanelPackage  {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelPackage.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelPackage.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelPackage.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelPackage.java	2010-07-28 17:36:56-0700
@@ -75,7 +75,10 @@
 
 /**
  * PropPanelPackage defines the Property Panel for Package elements.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelPackage extends PropPanelNamespace  {
 
     /**

Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelSubsystem.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelSubsystem.java?view=diff&pathrev=18591&r1=18590&r2=18591
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelSubsystem.java	(original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/model_management/PropPanelSubsystem.java	2010-07-28 17:36:56-0700
@@ -59,7 +59,10 @@
  * TODO: This is unused and only partially complete. It needs to implement all
  * Classifier properties as well as the Subsystem specific isInstantiable
  * property.
+ * @deprecated in 0.31.2 by Bob Tarling  This is replaced by the XML property
+ * panels module
  */
+@Deprecated
 public class PropPanelSubsystem extends PropPanelPackage {
 
     private JScrollPane featureScroll;

------------------------------------------------------
http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2639922

To unsubscribe from this discussion, e-mail: [[email protected]].
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.