Skip to content

Commit

Permalink
Synchronized variable names in the API and JavaDoc
Browse files Browse the repository at this point in the history
Change-Id: Ie337970d25e85ae0af7049ff4bb0e8047e1413ed
  • Loading branch information
egonw committed Mar 23, 2012
1 parent a51b2ae commit fd86c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/org/openscience/cdk/controller/IMouseEventRelay.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ public interface IMouseEventRelay {
* @param screenCoordX the x part of the screen coordinate where the event happened.
* @param screenCoordY the y part of the screen coordinate where the event happened.
*/
public abstract void mouseClickedDownRight(int x, int y);
public abstract void mouseClickedDownRight(int screenCoordX, int screenCoordY);

/**
* Event to signal that the right mouse button has been released.
*
* @param screenCoordX the x part of the screen coordinate where the event happened.
* @param screenCoordY the y part of the screen coordinate where the event happened.
*/
public abstract void mouseClickedUpRight(int x, int y);
public abstract void mouseClickedUpRight(int screenCoordX, int screenCoordY);

/**
* Event to signal that a mouse button has been double clicked.
Expand Down

0 comments on commit fd86c19

Please sign in to comment.