svn commit: r12662 - trunk/src_new/org/argouml/ui/explorer/TreeModelUMLEventListener.java
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: tfmorris
Date: 2007-05-26 09:26:54-0700
New Revision: 12662
Modified:
trunk/src_new/org/argouml/ui/explorer/TreeModelUMLEventListener.java
Log:
Rename parameter to match its purpose. No functional change.
Modified: trunk/src_new/org/argouml/ui/explorer/TreeModelUMLEventListener.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/ui/explorer/TreeModelUMLEventListener.java?view=diff&rev=12662&p1=trunk/src_new/org/argouml/ui/explorer/TreeModelUMLEventListener.java&p2=trunk/src_new/org/argouml/ui/explorer/TreeModelUMLEventListener.java&r1=12661&r2=12662
==============================================================================
--- trunk/src_new/org/argouml/ui/explorer/TreeModelUMLEventListener.java (original)
+++ trunk/src_new/org/argouml/ui/explorer/TreeModelUMLEventListener.java 2007-05-26 09:26:54-0700
@@ -1,5 +1,5 @@
// $Id$
-// Copyright (c) 1996-2006 The Regents of the University of California. All
+// 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
@@ -33,19 +33,19 @@
public interface TreeModelUMLEventListener {
/**
- * @param node the modelelement that is changed
+ * @param element the modelelement that is changed
*/
- void modelElementChanged(Object node);
+ void modelElementChanged(Object element);
/**
- * @param node the modelelement that is added
+ * @param element the modelelement that is added
*/
- void modelElementAdded(Object node);
+ void modelElementAdded(Object element);
/**
- * @param node the modelelement that is removed
+ * @param element the modelelement that is removed
*/
- void modelElementRemoved(Object node);
+ void modelElementRemoved(Object element);
/**
* The structure of the model is changed in an undefined way