Author: bobtarling
Date: 2010-07-28 14:30:25-0700
New Revision: 18588
Modified:
trunk/src/argouml-app/src/org/argouml/uml/ui/ElementPropPanelFactory.java
trunk/src/argouml-app/src/org/argouml/uml/ui/UMLModelElementListModel2.java
trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java
trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/PropPanelStateVertex.java
trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/UMLStateDeferrableEventListModel.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAbstraction.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociation.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociationClass.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociationEnd.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAttribute.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelClass.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelClassifier.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelComment.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelComponent.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelDataType.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelDependency.java
trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelElementResidence.java
Log:
Begin deprecating the old property panels
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/ElementPropPanelFactory.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/ElementPropPanelFactory.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/ElementPropPanelFactory.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/ElementPropPanelFactory.java 2010-07-28 14:30:25-0700
@@ -129,7 +129,10 @@
* We throw an exception if one is not found.
*
* @author Michiel
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
class ElementPropPanelFactory implements PropPanelFactory {
public PropPanel createPropPanel(Object element) {
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/UMLModelElementListModel2.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/UMLModelElementListModel2.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/UMLModelElementListModel2.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/UMLModelElementListModel2.java 2010-07-28 14:30:25-0700
@@ -66,7 +66,10 @@
*
* @since Oct 2, 2002
* @author [email protected]
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public abstract class UMLModelElementListModel2 extends DefaultListModel
implements TargetListener, PropertyChangeListener {
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java 2010-07-28 14:30:25-0700
@@ -51,8 +51,10 @@
/**
* The abstract properties panel for a State.
- *
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public abstract class AbstractPropPanelState extends PropPanelStateVertex {
private JScrollPane entryScroll;
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/PropPanelStateVertex.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/PropPanelStateVertex.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/PropPanelStateVertex.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/PropPanelStateVertex.java 2010-07-28 14:30:25-0700
@@ -52,7 +52,10 @@
* The properties tab panel for StateVertex and family.
*
* @author oliver.heyden
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public abstract class PropPanelStateVertex extends PropPanelModelElement {
private JScrollPane incomingScroll;
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/UMLStateDeferrableEventListModel.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/UMLStateDeferrableEventListModel.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/UMLStateDeferrableEventListModel.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/behavior/state_machines/UMLStateDeferrableEventListModel.java 2010-07-28 14:30:25-0700
@@ -46,7 +46,10 @@
/**
* @since Dec 14, 2002
* @author [email protected]
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public class UMLStateDeferrableEventListModel
extends UMLModelElementListModel2 {
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAbstraction.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAbstraction.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAbstraction.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAbstraction.java 2010-07-28 14:30:25-0700
@@ -43,7 +43,10 @@
/**
* The properties panel for a Abstraction.
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public class PropPanelAbstraction extends PropPanelDependency {
/**
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociation.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociation.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociation.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociation.java 2010-07-28 14:30:25-0700
@@ -52,7 +52,10 @@
* <p>
* TODO: In UML 2.x an Association is both a Relationship and a Classifier, so
* this inheritance hierarchy needs to be changed.
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public class PropPanelAssociation extends PropPanelRelationship {
/**
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociationClass.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociationClass.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociationClass.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociationClass.java 2010-07-28 14:30:25-0700
@@ -53,7 +53,10 @@
*
*
* @author pepargouml
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public class PropPanelAssociationClass extends PropPanelClassifier {
/**
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociationEnd.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociationEnd.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociationEnd.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAssociationEnd.java 2010-07-28 14:30:25-0700
@@ -56,7 +56,10 @@
/**
* The properties panel for an association end.
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public class PropPanelAssociationEnd extends PropPanelModelElement {
/**
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAttribute.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAttribute.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAttribute.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelAttribute.java 2010-07-28 14:30:25-0700
@@ -62,7 +62,10 @@
*
* @author jrobbins
* @author jaap.branderhorst
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public class PropPanelAttribute extends PropPanelStructuralFeature {
/**
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelClass.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelClass.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelClass.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelClass.java 2010-07-28 14:30:25-0700
@@ -43,7 +43,10 @@
/**
* The properties panel for a Class.
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public class PropPanelClass extends PropPanelClassifier {
/**
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelClassifier.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelClassifier.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelClassifier.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelClassifier.java 2010-07-28 14:30:25-0700
@@ -49,7 +49,10 @@
/**
* The abstract properties panel for Classifiers.
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public abstract class PropPanelClassifier extends PropPanelNamespace {
private JPanel modifiersPanel;
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelComment.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelComment.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelComment.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelComment.java 2010-07-28 14:30:25-0700
@@ -58,7 +58,10 @@
* In UML 1.4 and beyond, the Comment has a "body"
* attribute to contain the comment string, although
* some UML tools continue to use the name attribute.
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public class PropPanelComment extends PropPanelModelElement {
/**
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelComponent.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelComponent.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelComponent.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelComponent.java 2010-07-28 14:30:25-0700
@@ -50,7 +50,10 @@
* PropPanel for a UML Component.
*
* @author [email protected]
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public class PropPanelComponent extends PropPanelClassifier {
/**
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelDataType.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelDataType.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelDataType.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelDataType.java 2010-07-28 14:30:25-0700
@@ -56,7 +56,10 @@
/**
* The properties panel for a Datatype.
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public class PropPanelDataType extends PropPanelClassifier {
private JScrollPane operationScroll;
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelDependency.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelDependency.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelDependency.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelDependency.java 2010-07-28 14:30:25-0700
@@ -49,8 +49,10 @@
/**
* The properties panel for a Dependency.
- *
+ * @deprecated in 0.31.2 by Bob Tarling This is replaced by the XML property
+ * panels module
*/
+@Deprecated
public class PropPanelDependency extends PropPanelRelationship {
/**
Modified: trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelElementResidence.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelElementResidence.java?view=diff&pathrev=18588&r1=18587&r2=18588
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelElementResidence.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/ui/foundation/core/PropPanelElementResidence.java 2010-07-28 14:30:25-0700
@@ -48,9 +48,10 @@
*
* The ElementResidence is not a ModelElement according MDR,
* 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 PropPanelElementResidence extends PropPanelModelElement {
/**
------------------------------------------------------
http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2639892
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.