svn commit: r14433 - trunk/src/argouml-app/src/org/argouml/ui/AbstractArgoJPanel.java
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: tfmorris
Date: 2008-04-21 22:27:33-0700
New Revision: 14433
Modified:
trunk/src/argouml-app/src/org/argouml/ui/AbstractArgoJPanel.java
Log:
Add @deprecated annotations
Modified: trunk/src/argouml-app/src/org/argouml/ui/AbstractArgoJPanel.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/ui/AbstractArgoJPanel.java?view=diff&rev=14433&p1=trunk/src/argouml-app/src/org/argouml/ui/AbstractArgoJPanel.java&p2=trunk/src/argouml-app/src/org/argouml/ui/AbstractArgoJPanel.java&r1=14432&r2=14433
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/ui/AbstractArgoJPanel.java (original)
+++ trunk/src/argouml-app/src/org/argouml/ui/AbstractArgoJPanel.java 2008-04-21 22:27:33-0700
@@ -25,18 +25,24 @@
package org.argouml.ui;
/**
- * This exists purely for the backwards compatibility of modules.
- * Use {@link #org.argouml.application.api.AbstractArgoJPanel} if backwards compatibility to
- * ArgoUML 0.24 and before is not required.
- * @deprecated by Bob Tarling in 0.25.5 I would recommend to keep for at least
- * two major releases.
+ * This exists purely for the backwards compatibility of modules. New code
+ * should use {@link org.argouml.application.api.AbstractArgoJPanel}.
+ *
+ * @deprecated by Bob Tarling in 0.25.5. Use
+ * {@link org.argouml.application.api.AbstractArgoJPanel}.
+ * <p>
+ * Because this is a widely used class it is recommended to retain
+ * the deprecated class for at least two major releases (ie until
+ * after 0.28 is released using the current numbering scheme).
*/
+@Deprecated
public abstract class AbstractArgoJPanel
extends org.argouml.application.api.AbstractArgoJPanel {
/**
* The constructor.
*
*/
+ @Deprecated
public AbstractArgoJPanel() {
super();
}
@@ -46,6 +52,7 @@
*
* @param title The name as a localized string.
*/
+ @Deprecated
public AbstractArgoJPanel(String title) {
super(title);
}
@@ -56,6 +63,7 @@
* @param title The name (a localized string).
* @param t if true, remove tab from parent JTabbedPane
*/
+ @Deprecated
public AbstractArgoJPanel(String title, boolean t) {
super(title, t);
}