svn commit: r16284 - trunk/src/argouml-app/src/org/argouml/uml/diagram/static_structure/layout/ClassdiagramNode.java
Tom Morris <[email protected]>
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: tfmorris
Date: 2008-12-07 13:00:34-0800
New Revision: 16284
Modified:
trunk/src/argouml-app/src/org/argouml/uml/diagram/static_structure/layout/ClassdiagramNode.java
Log:
Remove deprecated getDownLinks() & getUpLinks()
Modified: trunk/src/argouml-app/src/org/argouml/uml/diagram/static_structure/layout/ClassdiagramNode.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/uml/diagram/static_structure/layout/ClassdiagramNode.java?view=diff&pathrev=16284&r1=16283&r2=16284
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/uml/diagram/static_structure/layout/ClassdiagramNode.java (original)
+++ trunk/src/argouml-app/src/org/argouml/uml/diagram/static_structure/layout/ClassdiagramNode.java 2008-12-07 13:00:34-0800
@@ -236,16 +236,6 @@
return column;
}
- /**
- * Get the downlinks of this node.
- *
- * @return The downlinks of this node.
- * @deprecated for 0.25.4 by tfmorris - use {@link #getDownNodes()}
- */
- @Deprecated
- public Vector<ClassdiagramNode> getDownlinks() {
- return new Vector<ClassdiagramNode>(downlinks);
- }
/**
* Get the downlinks of this node.
@@ -361,17 +351,6 @@
* Get the uplinks of this node.
*
* @return The uplinks of this node.
- * @deprecated for 0.25.4 by tfmorris. Use {@link #getUpNodes()}.
- */
- @Deprecated
- public Vector<ClassdiagramNode> getUplinks() {
- return new Vector<ClassdiagramNode>(uplinks);
- }
-
- /**
- * Get the uplinks of this node.
- *
- * @return The uplinks of this node.
*/
public List<ClassdiagramNode> getUpNodes() {
return uplinks;
------------------------------------------------------
http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=980890
To unsubscribe from this discussion, e-mail: [[email protected]].