svn commit: r12618 - trunk/src_new/org/argouml: ui ui/cmd uml/diagram/ui

[email protected]
Newsgroups gmane.comp.lang.uml.argouml.cvs
Message-ID <[email protected]>
Author: tfmorris
Date: 2007-05-14 10:14:05-0700
New Revision: 12618

Modified:
   trunk/src_new/org/argouml/ui/StylePanel.java
   trunk/src_new/org/argouml/ui/TabTarget.java
   trunk/src_new/org/argouml/ui/cmd/ActionAdjustGrid.java
   trunk/src_new/org/argouml/ui/cmd/ActionAdjustSnap.java
   trunk/src_new/org/argouml/uml/diagram/ui/SelectionNodeClarifiers2.java

Log:
Minor Javadoc updates.  No functional changes.

Modified: trunk/src_new/org/argouml/ui/StylePanel.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/ui/StylePanel.java?view=diff&rev=12618&p1=trunk/src_new/org/argouml/ui/StylePanel.java&p2=trunk/src_new/org/argouml/ui/StylePanel.java&r1=12617&r2=12618
==============================================================================
--- trunk/src_new/org/argouml/ui/StylePanel.java	(original)
+++ trunk/src_new/org/argouml/ui/StylePanel.java	2007-05-14 10:14:05-0700
@@ -78,11 +78,10 @@
     }
 
     /**
-     * {@inheritDoc}
-     * <p>
      * This method must be overriden by implementors if they don't want to
      * refresh the whole stylepanel every time a property change events is
-     * fired.
+     * fired.  The default behavior is to always call {@link #refresh()}.
+     * @see #refresh()
      */
     public void refresh(PropertyChangeEvent e) {
 	refresh();

Modified: trunk/src_new/org/argouml/ui/TabTarget.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/ui/TabTarget.java?view=diff&rev=12618&p1=trunk/src_new/org/argouml/ui/TabTarget.java&p2=trunk/src_new/org/argouml/ui/TabTarget.java&r1=12617&r2=12618
==============================================================================
--- trunk/src_new/org/argouml/ui/TabTarget.java	(original)
+++ trunk/src_new/org/argouml/ui/TabTarget.java	2007-05-14 10:14:05-0700
@@ -35,27 +35,27 @@
 public interface TabTarget extends TargetListener {
 
     /**
-     * set the target
+     * Set the target.
      *
      * @param target
-     *            the target to set
+     *            the new target to set
      */
     public void setTarget(Object target);
 
     /**
-     * get the current target
+     * Get the current target.
      *
      * @return the target
      */
     public Object getTarget();
 
     /**
-     * Refreshes the tab IN TOTAL
+     * Refresh the tab IN TOTAL.
      */
     public void refresh();
 
     /**
-     * Returns true if the tab should be enabled with the given target
+     * Return true whether the tab should be enabled with the given target.
      *
      * @param target the given target
      * @return true if the tab should be enabled

Modified: trunk/src_new/org/argouml/ui/cmd/ActionAdjustGrid.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/ui/cmd/ActionAdjustGrid.java?view=diff&rev=12618&p1=trunk/src_new/org/argouml/ui/cmd/ActionAdjustGrid.java&p2=trunk/src_new/org/argouml/ui/cmd/ActionAdjustGrid.java&r1=12617&r2=12618
==============================================================================
--- trunk/src_new/org/argouml/ui/cmd/ActionAdjustGrid.java	(original)
+++ trunk/src_new/org/argouml/ui/cmd/ActionAdjustGrid.java	2007-05-14 10:14:05-0700
@@ -133,7 +133,7 @@
      * @constraint one of the actions should have the ID 'defaultID', 

      *          since this is used in init().

      * @param longStrings

-     * @return

+     * @return List of Actions which adjust the grid

      */

     static List createAdjustGridActions(boolean longStrings) {

         List result = new ArrayList();


Modified: trunk/src_new/org/argouml/ui/cmd/ActionAdjustSnap.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/ui/cmd/ActionAdjustSnap.java?view=diff&rev=12618&p1=trunk/src_new/org/argouml/ui/cmd/ActionAdjustSnap.java&p2=trunk/src_new/org/argouml/ui/cmd/ActionAdjustSnap.java&r1=12617&r2=12618
==============================================================================
--- trunk/src_new/org/argouml/ui/cmd/ActionAdjustSnap.java	(original)
+++ trunk/src_new/org/argouml/ui/cmd/ActionAdjustSnap.java	2007-05-14 10:14:05-0700
@@ -116,9 +116,10 @@
     }

 

     /**

-     * 4, 8, 16, 32

+     * Return a list of actions to adjust the size of the snap grid.

+     * Current values are 4, 8, 16, and 32.

      * 

-     * @return

+     * @return List of Actions which adjust the size of the snap grid

      */

     static List createAdjustSnapActions() {

         List result = new ArrayList();


Modified: trunk/src_new/org/argouml/uml/diagram/ui/SelectionNodeClarifiers2.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/uml/diagram/ui/SelectionNodeClarifiers2.java?view=diff&rev=12618&p1=trunk/src_new/org/argouml/uml/diagram/ui/SelectionNodeClarifiers2.java&p2=trunk/src_new/org/argouml/uml/diagram/ui/SelectionNodeClarifiers2.java&r1=12617&r2=12618
==============================================================================
--- trunk/src_new/org/argouml/uml/diagram/ui/SelectionNodeClarifiers2.java	(original)
+++ trunk/src_new/org/argouml/uml/diagram/ui/SelectionNodeClarifiers2.java	2007-05-14 10:14:05-0700
@@ -377,7 +377,7 @@
     
     /**
      * Request post processing of edge by GEF after it is created using
-     * {@link ModeCreateEdgeAndNode#ModeCreateEdgeAndNode(Editor, Object, Object, boolean)
+     * {@link ModeCreateEdgeAndNode#ModeCreateEdgeAndNode(Editor, Object, Object, boolean)}
      * 
      * @return true if postprocessing requested
      */
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.