You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-commits@xmlgraphics.apache.org by ca...@apache.org on 2007/11/13 02:08:31 UTC

svn commit: r594379 [3/3] - in /xmlgraphics/batik/trunk/sources/org: apache/batik/apps/svgbrowser/ apache/batik/ext/awt/image/renderable/ apache/batik/gvt/font/ apache/batik/i18n/ apache/batik/svggen/ apache/batik/swing/ apache/batik/util/ apache/batik...

Modified: xmlgraphics/batik/trunk/sources/org/apache/batik/util/gui/DropDownComponent.java
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/trunk/sources/org/apache/batik/util/gui/DropDownComponent.java?rev=594379&r1=594378&r2=594379&view=diff
==============================================================================
--- xmlgraphics/batik/trunk/sources/org/apache/batik/util/gui/DropDownComponent.java (original)
+++ xmlgraphics/batik/trunk/sources/org/apache/batik/util/gui/DropDownComponent.java Mon Nov 12 17:08:28 2007
@@ -706,7 +706,7 @@
         /**
          * Adds the listener to the listener list.
          *
-         * @param l
+         * @param listener
          *            The listener to add
          */
         public void addListener(ScrollablePopupMenuListener listener) {

Modified: xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/InputHandler.java
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/InputHandler.java?rev=594379&r1=594378&r2=594379&view=diff
==============================================================================
--- xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/InputHandler.java (original)
+++ xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/InputHandler.java Mon Nov 12 17:08:28 2007
@@ -179,7 +179,7 @@
 	/**
 	 * Grabs the next key typed event and invokes the specified
 	 * action with the key as a the action command.
-	 * @param action The action
+	 * @param listener The action
 	 */
 	public void grabNextKeyStroke(ActionListener listener)
 	{

Modified: xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/JEditTextArea.java
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/JEditTextArea.java?rev=594379&r1=594378&r2=594379&view=diff
==============================================================================
--- xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/JEditTextArea.java (original)
+++ xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/JEditTextArea.java Mon Nov 12 17:08:28 2007
@@ -1389,7 +1389,7 @@
 
 	/**
 	 * Sets if the selection should be rectangular.
-	 * @param overwrite True if the selection should be rectangular,
+	 * @param rectSelect True if the selection should be rectangular,
 	 * false otherwise.
 	 */
 	public final void setSelectionRectangular(boolean rectSelect)

Modified: xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/TextAreaPainter.java
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/TextAreaPainter.java?rev=594379&r1=594378&r2=594379&view=diff
==============================================================================
--- xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/TextAreaPainter.java (original)
+++ xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/TextAreaPainter.java Mon Nov 12 17:08:28 2007
@@ -72,7 +72,7 @@
 	/**
 	 * Returns the syntax styles used to paint colorized text. Entry <i>n</i>
 	 * will be used to paint tokens with id = <i>n</i>.
-	 * @see org.gjt.sp.jedit.syntax.Token
+	 * @see org.gjt.sp.jedit.textarea.Token
 	 */
 	public final SyntaxStyle[] getStyles()
 	{
@@ -83,7 +83,7 @@
 	 * Sets the syntax styles used to paint colorized text. Entry <i>n</i>
 	 * will be used to paint tokens with id = <i>n</i>.
 	 * @param styles The syntax styles
-	 * @see org.gjt.sp.jedit.syntax.Token
+	 * @see org.gjt.sp.jedit.textarea.Token
 	 */
 	public final void setStyles(SyntaxStyle[] styles)
 	{
@@ -353,7 +353,7 @@
 
 	/**
 	 * Repaints the text.
-	 * @param g The graphics context
+	 * @param gfx The graphics context
 	 */
 	public void paint(Graphics gfx)
 	{

Modified: xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/TokenMarker.java
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/TokenMarker.java?rev=594379&r1=594378&r2=594379&view=diff
==============================================================================
--- xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/TokenMarker.java (original)
+++ xmlgraphics/batik/trunk/sources/org/gjt/sp/jedit/textarea/TokenMarker.java Mon Nov 12 17:08:28 2007
@@ -24,7 +24,7 @@
  * @author Slava Pestov
  * @version $Id: TokenMarker.java,v 1.32 1999/12/13 03:40:30 sp Exp $
  *
- * @see org.gjt.sp.jedit.syntax.Token
+ * @see org.gjt.sp.jedit.textarea.Token
  */
 public abstract class TokenMarker
 {